javascript - nodejs bootstrap project works local only -
ive been trying out different things, , looking various ways solve it, i'm in need of hints make work. i have working nodejs bootstrap project gulp. website functions locally. so in project have fiollowing files (among other folders) : gulpfile.js index.html package.json when locally run project via 'gulp dev' seems perfect. on heroku after deploying gives me error: npm err! missing script: start this makes sense, because indeed package.json doesn't have start script. how can work on local? any leads? thanks node.js file name index.js first before start move current files new folder called public in parent folder above public create file index.js once in parent folder above public run in command line directory created index.js file npm express --save this install mini framework node.js , save project.json config for index.js file content /// start var express = require('express'); var path = require('path') v...