This repository was archived by the owner on Oct 30, 2025. It is now read-only.
Description Environments that need to be accounted for:
Node
"dev": "npm run dev:liveReloadedModule",
"dev:vanillaModule": "babel-node src/index.js",
"dev:liveReloadedModule": "nodemon --watch src/index.js --exec 'babel-node src/index.js'",
"dev:liveReloadedModuleAndTests": "npm-run-all -s clean:build build test:liveReloadedAva",
Docker
"dev:liveReloadedDocker": "npm-run-all -p docker:compose dev:liveReloadedModule docker:liveReload ",
"docker:liveReload": "npx docker-live-reload 'src/**/*' node-starter_server_1 /usr/src/server/src",
"docker:compose": "docker-compose up -d",
Testing
"test": "npm run test:ava",
"test:ava": "ava",
"test:liveReloadedAva": "ava --watch",
Production
"production": "npm run production:quick",
"production:quick": "npm run build && node build/main.js",
"production:full": "npm run ci && node build/main.js",
"ci": "npm-run-all -s build ci:local:timed:vuln",
Reactions are currently unavailable
Environments that need to be accounted for:
Node
Docker
Testing
Production