Skip to content

Latest commit

 

History

History
27 lines (21 loc) · 860 Bytes

File metadata and controls

27 lines (21 loc) · 860 Bytes

React Mobx App Boilerplate

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

Developing

Install dependencies:

npm i

Start development server:

npm start

Production build

npm run build