Skip to content

Latest commit

 

History

History
32 lines (25 loc) · 665 Bytes

File metadata and controls

32 lines (25 loc) · 665 Bytes

Node.js Learning Toolkit

This repository contains examples and practice exercises for learning Node.js fundamentals.

Getting Started

  1. Clone this repository:

    git clone [REPOSITORY_URL]
    cd node-learning-toolkit
  2. 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.js

To test your files after creating unit tests, run:

npm test