From 49a5c7c753cb6cc5f04139b4dc52bd1b6c4039b4 Mon Sep 17 00:00:00 2001 From: Mitra Ardron Date: Sat, 7 Dec 2019 13:11:08 +1100 Subject: [PATCH] Typo - to start it It said `node start` which of course complains ``` node start internal/modules/cjs/loader.js:783 throw err; ^ Error: Cannot find module '/Users/mitra/git/epubjs-reader/start' at Function.Module._resolveFilename (internal/modules/cjs/loader.js:780:15) at Function.Module._load (internal/modules/cjs/loader.js:685:27) at Function.Module.runMain (internal/modules/cjs/loader.js:1014:10) at internal/main/run_main_module.js:17:11 { code: 'MODULE_NOT_FOUND', requireStack: [] ``` Pretty sure it meant `npm start` to run the `"start": "node tools/serve",` line in package.json --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index a3959af..1b0338a 100644 --- a/README.md +++ b/README.md @@ -34,7 +34,7 @@ npm install You can run the reader locally with the command ```javascript -node start +npm start ``` Builds are concatenated and minified using [gruntjs](http://gruntjs.com/getting-started)