Skip to content
This repository was archived by the owner on Jan 14, 2023. It is now read-only.

hendriknielaender/react-typescript-boilerplate

Folders and files

NameName
Last commit message
Last commit date
Jun 21, 2019
Jun 21, 2019
Jun 21, 2019
Jun 21, 2019
Jun 21, 2019
Jun 21, 2019
Jun 21, 2019
Jun 21, 2019
Jun 21, 2019
Jul 4, 2022
Feb 10, 2022
Jun 21, 2019
Jun 21, 2019

Repository files navigation

Libraries

  • React
  • TypeScript
  • Babel
  • Jest + Enzyme
  • TSLint
  • Webpack 4
  • sass-loader
  • Prettier

Quick start

  1. Clone this repo using git clone https://github.com/hendriknielaender/react-typescript-boilerplate.git <YOUR_PROJECT_NAME>
  2. Move to the appropriate directory: cd <YOUR_PROJECT_NAME>.
  3. Run npm install in order to install dependencies
  4. Run npm run dev

How to use

# install dependencies
$ npm install

# start a server (development mode)
$ npm run dev

# check your types
$ npm run check-types

# lint
$ npm run lint

# test
$ npm run test

# production build
$ npm run build

# start a server (production mode)
$ npm run start