azakharo / react-ts-starter-2023

React.js Typescript application starter
10 stars 2 forks source link
boilerplate boilerplate-application boilerplate-front-end boilerplate-template eslint jest prettier react starter starter-kit starter-project starter-template typescript webpack

React.js Typescript application starter

Usage: create fast prototypes, solve test tasks.

Features:

Webpack Vs Vite

This starter uses Webpack. So, the dev server starts slowly compared to Vite.
The same is true also for code changes and live-reloading.
If you'd like to try the same starter, but with Vite, see the following link:
react-ts-vite-starter

Quick start

First install dependencies:

npm install

To run in the development mode with hot module reloading:

npm start

That command opens http://localhost:4000 page in your browser.

To create a production build:

npm run build

See "build" folder for results.