This repository contains examples and practice exercises for learning Node.js fundamentals.
-
Clone this repository:
git clone [REPOSITORY_URL] cd node-learning-toolkit -
Install dependencies:
npm install
Use the following folders for each resource:
- Resource #3:
math-examples - Resource #4:
file-examples - Resource #5:
test-examples
To run files, use the node command followed by the file name:
node math-examples/calculator.js
node math-examples/mainApp.jsTo test your files after creating unit tests, run:
npm test