Analyzing getting main information about the website
- Internal and external links
- Title and description
- Headings
- Login forms
build/
|- index.html _________________________________ # application html
client/
|- index.jsx __________________________________ # Application entry point
|- App.jsx ____________________________________ # Application init
|- Constants.js _______________________________ # Application constants
| |- Components/
| |- Common/ _______________________________ # Reusable components
| |- error/ _____________________________ # Error component
| |- Search-box/ ___________________________ # Search box component
| |- Search-result/ ________________________ # Search result component
server/
|- index.js __________________________________ # Nodejs entry point and routes
|- helpers.js ________________________________ # Utils.
|- dataServer.js _____________________________ # Appication logic
npm install
oryarn
to install all dependency.
- Run server
yarn start
- Run Front-End
yarn start:frontend
Will run watch all and coverage
yarn test
- Run
yarn build