Using browser-sync with node.js app
问题 I have an existing node app. My Node directory structure is setup like this: ./ node_modules/ src/ views/ index.html ... server.js test/ gulpfile.js package.json I can successfully start my app my running node ./src/server.js from the root shown above. Once started, I can visit "http://localhost:3000" in the browser and see the contents of index.html like I am expecting. I want to speed up my development and I recently learned about browsersync. In an attempt to include it in my gulp process,