Skip to content

⭐️A template repository for react project with boilerplate code.

License

Notifications You must be signed in to change notification settings

onemanfighter/create-clean-react-app

Repository files navigation

Boilerplate react-js project

This is a boilerplate project for a react-js project. It includes the following:

  • React-js
  • Webpack
  • Babel
  • Eslint
  • Prettier
  • Jest
  • cypress
  • Husky
  • Lint-staged
  • Zustand
  • Tailwindcss
  • i18next
  • module resolver
  • Github action | Build, Lint, Test job | FTP deploy job |

Getting started

For development, you will only need Node.js and a node global package, npm, installed in your environment.

Prerequisites

  • Node.js
  • npm or yarn

Install

npx boilerplate-react-js my-app
cd my-app
npm install
 or
yarn install

Start

npm start
 or
yarn start

Build

npm run build
 or
yarn build

Test

npm test
 or
yarn test

Lint

npm run lint
 or
yarn lint