Skip to content

wackyjoker/Indexing-demo

Repository files navigation

A quick review on https://cartrack-app.herokuapp.com/

Skill assessment Project for interview. (got offer)

npm start

do npm start in terminal
which will implement node server.js
Runs the app in the Production mode.
NOTE: do npm run build first to Create a Production Build first Open http://localhost:9000 to view it in the browser.

npm run dev start

do npm run dev start in terminal
which will implement webpack-dev-server --watch --open --mode development --colors
Runs the app in the development mode.
Open http://localhost:9000 to view it in the browser.

The page will reload if you make edits.
You will also see any lint errors in the console.

npm run build

do npm run build in terminal
which will implement webpack --env production --config webpack.config.js
Builds the app for production to the build folder.
It correctly bundles React in production mode and optimizes the build for the best performance.

The build is minified and the filenames include the hashes.

Note

the CSS is being used with Global Scope instead of CSS Module.