tutorial set up - ncmcgrewdev/fs-js-lite GitHub Wiki

#Step 2: Set Up Your Test Environment

  1. For this tutorial you will access an express.js server to process the tutorial.html file commands. Install node.js if not previously installed.

  2. In a command prompt, navigate to parent directory where you want to store your project root and type the following commands.

npm install -g express-generator
express {project name}
cd {project name}
npm install
  1. No run your server with the command npm start. We won't be editing the routes, so you can leave the server running.

(Proceed to Step 3 of the tutorial)