Skip to content

Files

Latest commit

37de08d · Oct 20, 2021

History

History
64 lines (44 loc) · 1.36 KB

File metadata and controls

64 lines (44 loc) · 1.36 KB

React Recoil Emotion Boilerplate

React&TypeScript boilerplate using Recoil, Emotion. It was built using webpack and babel without CRA.

Prerequisites

Features

Getting Started

Installation

$ npx degit https://github.com/telbby/react-recoil-emotion-boilerplate <project name>
$ cd <project name>
$ yarn install

Development server

Webpack dev server runs at localhost:8080.

$ yarn dev

Production build

Build outputs are created in build.

$ yarn build

Test

The test environment was built using the jest and react testing library.

$ yarn test
$ yarn test:watch
$ yarn test:coverage

Lint

It uses eslint and pretier and follows the rules of airbnb.

$ yarn lint
$ yarn lint:fix
$ yarn prettier:write