Difference between revisions of "My Node.js notes"

From Got Opinion Wiki
Jump to navigation Jump to search
m (add npm section)
m (added new section for nodemon)
Line 17: Line 17:


Press CTRL+C twice to exit debugger in console.
Press CTRL+C twice to exit debugger in console.
== [https://www.npmjs.com/package/nodemon nodemon] ==
nodemon <app.name> -e <comma separated list of extensions to monitor>
<code>nodemon src/app.js -e js,hbs


== Resources ==
== Resources ==

Revision as of 14:23, 2 July 2019

Node.js Package Manager (npm)

npm

Initialize an npm project. Within project directory use npm init command. The default command launches a questionnaire. To answer default on all questions use -y argument.


Basic stuff

debugger statement and node inspect

chrome:://inspect

Exit Chrome DevTool debugger.

Type restart at console after exiting Chrome DevTool to restart app with same arguments.

Press CTRL+C twice to exit debugger in console.

nodemon

nodemon <app.name> -e <comma separated list of extensions to monitor>

nodemon src/app.js -e js,hbs

Resources

Node.js home

To software notes