tutorial set up - ncmcgrewdev/fs-js-lite GitHub Wiki
#Step 2: Set Up Your Test Environment
-
For this tutorial you will access an express.js server to process the tutorial.html file commands. Install node.js if not previously installed.
-
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
- No run your server with the command
npm start
. We won't be editing the routes, so you can leave the server running.