Hey developer 👋
This is a repository with an example of a base application that can scale, using Mobx as state manager. If you want Server Side Rendered, check my other repo React Mobx SSR Boilerplate
Some considerations were done while creating this boilerplate:
- using classes for modules (OOP) instead of functional programming (could be refactored, but this is personal preference)
- Interface based implementation (easy to swap modules at any time, different modules between server and client side if required)
- made a simple webpack configuration
Install dependencies:
npm i
Start development server:
npm start
Production build
npm run build