Community rated bike paths web app
WEBPACK AND NPM INSTRUCTIONS
-
Install dependencies:
npm install. We will install more dependencies for Webpack and Babel along the way. -
Once you've setup your Webpack config file (
webpack.config.js) in the challenges below, you can create your Webpack production build by running:npm run build. You can then run the application server withnpm startand view the React application onlocalhost:3000 -
Once you've setup your Gulpfile in the challenges below, start the gulp build by running:
npm run gulp
After running npm start the server starts on port 3000, but the React app doesn't render anything. There are no tests for this unit; use whether or not your app is rendering to check if your build is working correctly.
TO SEE WEB APP IN http://localhost:8080/
- Run
npm run dev(don't runnpm start)