Presentation comments ...
<div class="twocolumn"> <div class="col"> 1. Open `cron-demo` in VS Code (above) 2. Run `npm init` to initialize a new project. Press return at each prompt. This creates a `package.json` file with data you entered. 3. Open your new `package.json` file. Confirm the `main` field is set to `index.js`. </div> <div class="col"> 4. Edit the `scripts` property. Add a comma to the end of the `test` property, then add `"start": "node index.js"` below it. 5. In the Terminal run, `npm run start` </div> </div>
TODO: Clean up all these projects