A static website built using React Bootstrap
Install a static web server serve
and install project packages
yarn global add serve # install a static web server globally
yarn # install Dependencies
yarn start # Hot loading is enabled. Keep developing, browser will be updated automatically
yarn run build # production
serve -s build # test the production. Deploy the `build` folder to a webserver
yarn run deploy # deploy to the destination ("homepage" in package.json)
README.md
.eslintrc # Config file for eslint (Styling JavaScript)
.gitignore
package.json
yarn.lock
[directories]
|- src
|- data # static data
*.js # js files written in React
*.css # stylesheet files
|- public # development build
|- dist # production build
Dependencies
react
JavaScript library to build user interfacereact-dom
Virtual DOMprop-types
Type checking for React
react-bootstrap
Bootstrap 3 React bindings
devDependencies
eslint
related:- eslint, eslint-config-airbnb, eslint-plugin-import, eslint-plugin-jsx-a11y, eslint-plugin-react
react-scripts
React application development script
Globally installed tools
node
npm
and/oryarn
git
Atom
editor for web developmentlanguage-babel
language syntax highlighting for babellinter-eslint
eslint integration with Atom