Guest User

Untitled

a guest
Jun 25th, 2018
90
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.26 KB | None | 0 0
  1. console.log('Hello, starting point of my app');
  2. const fs = require('fs');
  3. const os = require('os');
  4. const notes = require('./notes.js'); //see using the relative path here
  5. var user = os.userInfo();
  6. fs.appendFileSync('greetings-user', `Hello ! ${user.username}`);
Add Comment
Please, Sign In to add comment