Web Dev Bootcamp > Node and NPM basics > Flashcards
run app.js with node
app.js
node app.js
How do you pass variables to file in node
> node app.js var1 var2
process. argv[2]process. argv[3]
Install npm module
> npm install package_name
create package.json
> npm init