NodeJs

From bibbleWiki
Revision as of 00:06, 8 June 2020 by Iwiseman (talk | contribs) (Created page with "= Setup = Running start up scripts in node "scripts": { "start": "run-p start:dev start:api" "startdev: "webpack-dev-server --config webpack.config.dev.js --port 3000"...")
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to navigation Jump to search

Setup

Running start up scripts in node

"scripts": {

 "start": "run-p start:dev start:api"
 "startdev: "webpack-dev-server --config webpack.config.dev.js --port 3000"
 "prestart:api": "node tools/createMockDb.js"
  "start:api: "node tools/apiServer.js"

};