Node Js Document
Node Js Document
5)Wide support from IDEs and code editors = JavaScript has been around for a long
time, so code hinting and highlighting is featured by a bunch IDEs like Visual
Studio and Eclipse; also editors like Notepad++ and Sublime Text.
alwaya start a project by type npm init. create .npmrc file to setup installation
like --save.
Debugging options
1)console.log
2) chalk
example:
app.listen(3000, function() {
console.log(chalk.green("port is running on port 3000"));
});
3)