Node Basics

From rbachwiki
Revision as of 23:43, 2 April 2018 by Bacchas (talk | contribs)
Jump to navigation Jump to search

Run a Node App

terminal

node filename.js

You can execute node code in the terminal by typing

node 

This will give you a node command prompt

Node Modules

console.log('starting app');

const fs = require('fs');
const os = require('os');
 var user = os.userInfo();
 //console.log(user);
fs.appendFile('greet.txt', `hello${user.username}!` , (e)=>{
    if(e){
        console.log('error');
    }
});

Nodejs api List

Back To Top- Home - Category