Template React project with full TypeScrip and SSR support.
This project is a compilation of different approaches in React development that allows not only to start a new project quickly, but to learn how it works under the hood.
Every new React developer knows that React is a library, not a complete framework. Thus, it provides maximum flexibility. However, a lot of knowledge is required to create a fully functional web application powered with React.
That is why there exist such a famous framework as Next.js as well as a tool Create React App (CRA).
Despite the advantages that such tools have, there are some cons that their user may face:
- Lack of understanding how exactly certain solutions work and why they are applied;
- Lack of flexibility: applied solutions are difficult to fine-tune to your needs;
- The complexity of the codebase of these tools.
As a result, novice React developers have two options for action:
- Simply apply these tools and frameworks to get the product without going into the nuances of their implementation;
- Independently collect bit by bit information on how to implement certain functions in React ecosystem.
Thus, the goal of this project is to collect in one place all the most common methods of working with the React ecosystem without being tied to a specific framework or tool like CRA.
Core:
- React 18+ (Preact 10+ as an option, see comparison below)
- webpack 5+ (with optional SWC support and SSR or static build)
- TypeScript (with strict rules, including webpack configuration)
SSR:
- Express (with render to stream option including helmet data and initial state pushing)
State:
- Redux 4+
Router:
- React Router
Code Splitting:
- Loadable Components (SSR compatible)
API:
- RTK Query
Styles:
- (S)CSS modules (with TypeScript support)
Linters:
- ESLint
- Stylelint (including rules order)
Tests:
- Jest 29+
- React Testing Library
- Utility for Redux Testing
- One example of integration test of a component with user event and Redux
Other:
- API request caching (powered by RTK Query)
- Data prefetching on server side
- Hot reload (including state, style and server code hot reloading)
- VSCode support with error highlight and on save fixes
- Script for fast component creation
- Optional Service worker and offline status detector
- Webpack Bundle Analyzer
This boilerplate includes a simple application with:
- Several screen/pages with their own routes
- Local counter
- Global counter
- One of the components is dynamically loaded
- API requests
- Loading spinner
- Theme switcher (light and dark)
- Offline detector
Live preview: https://react-proto.onrender.com/
(due to free hosting, a cold start could be slow)
-
Clone this repo:
git clone https://github.com/StopNGo/react-proto
-
Install all packages:
npm i
-
Run project in a development mode:
npm start
-
Open your browser with the next address:
http://localhost:8080/
-
Build the project (production bundle will be in the
"dist"
folder):npm run build
or with Webpack Bundle Analyzer report server:
npm run build:report
-
Run a server:
npm run run
-
You can test the server locally:
http://localhost:3000/
-
Just run the next command and browser will open automatically:
npm run start:static
-
Run the next command and get a production bundle in the
"dist"
folder:npm run build:static
or with Webpack Bundle Analyzer report server:
npm run build:static:report
All packages in this project are pinned to latest versions at the time of publishing to exclude version-based conflicts and errors and to guarantee proper work of the code in this repository.
If you want to update packages, do next:
npm install -g npm-check-updates
ncu -u
npm i
All configuration is available in files with constants:
webpack\constants.ts
- contains working directories, SWC option and other related to bundling staffsrc\constants
- a directory with app files with configuration constantssrc\server\constants.ts
- contains a server port and render to stream options
In webpack\constants.ts
you can choose to use Preact library instead React itself (IS_PREACT
boolean constant).
Preact is a fast and compact React-compatible Virtual DOM library. But because its community is much smaller, you can face with some incompatibility with React API and functionality, especially with new ones. Also some tests show some frame drops during moving a lot of elements. Below you can see a bundle size comparison of no-SSR version of the sample application of this repository (according to Webpack Bundle Analyzer):
React | Preact | |
---|---|---|
Parsed | 274.25 KB | 159.7 KB |
Gzipped | 89.58 KB | 53.88 KB |
Coming soon.
One of the goals of this project is to provide some common solutions in React development and to clarify why they were chosen and how they work. So, such information will be present in this documentation in an orderly fashion.
Detailed release notes for a given version can be found on releases page.
I welcome any feedbacks, suggestions and questions related to this project.
You can leave them on issues or discussions pages.
Thank you!