varunyn / demoReact

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

React pages boilerplate

Cover This boilerplate introduces a simple way for developing serverless React applications, which are perfect for serving from Github Pages.

Technologies

Preinstalled and configured libraries

Getting started

  • Clone git clone https://github.com/rtivital/react-pages-boilerplate or download this repository.
  • (Optional) Run nvm use. This will ensure that you are running the supported version of Node.js. You can nvm installation instructions here.
  • Install dependencies: npm install
  • Run the project: npm start
  • Remove git folder with npm run clean:git (this will remove .git folder attached to react-pages-boilerplate) and follow these instructions to init new Github repository and enable publishing to Gihub Pages.

npm scripts

  • npm start – starts development server with webpack-dev-server
  • npm test – runs tests with Jest
  • npm run build – builds project to production (Note that the result bundle is not suitable for hosting on Github Pages, use npm run deploy to build and deploy to Github Pages)
  • npm run deploy – builds and deploys project to Github pages
  • npm run lint – lints both JavaScript (with npm run lint:js) and Sass files (with npm run lint:scss)
  • npm run storybook – starts storybook server on port 9001
  • npm run prettier – format js and jsx files with prettier

Changelog

See releases section to get information about new cool features added to the project.

About

License:MIT License


Languages

Language:JavaScript 57.1%Language:SCSS 42.2%Language:EJS 0.7%