Start our first Node.js project, Hello Node! To practice our very basic skills on JavaScript on the server.
- Various programs we built before
- Install Node.js
- Use Node.js
- Run previous JavaScript projects on Node.js
- Our programs are running on Node.js
- Install Node.js using
nvm
# Unix-based
https://github.com/creationix/nvm
# Windows
https://github.com/coreybutler/nvm-windows
- Install
node
+npm
throughnvm
- Test if that works
node
- Run your programs on Node.js
node index.js
- Congrats!