Skip to content

A collection of simple mobx examples

License

Notifications You must be signed in to change notification settings

mobxjs/mobx-examples

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

121 Commits
 
 
 
 
 
 
 
 

Repository files navigation

MobX Examples

Modern MobX 6 examples using TypeScript and Vite. Each example is a self-contained project that can be opened directly in CodeSandbox.

Examples

# Example Concepts Open
01 Observable & Autorun makeAutoObservable, autorun, dependency tracking CodeSandbox
02 Computed computed getters, caching, lazy evaluation CodeSandbox
03 Actions configure({ enforceActions }), action, batching CodeSandbox
04 runInAction runInAction, async patterns CodeSandbox
05 Reaction reaction, data vs effect functions, disposal CodeSandbox
06 When when callback + promise form CodeSandbox
07 Observable Map observable.map, dynamic keys CodeSandbox
08 Observable Array Observable arrays, proxy behavior CodeSandbox
09 React Todo observer, mobx-react-lite, store + React Context CodeSandbox
10 React Timer observer, computed, interval side effects CodeSandbox

Running locally

Each example is a standalone Vite project:

cd examples/01-observable-autorun
npm install
npm run dev

MobX 3 to 6 migration reference

MobX 3 (old) MobX 6 (new)
mobx.observable({...}) + factory functions class + makeAutoObservable(this)
mobx.extendObservable(this, {...}) makeAutoObservable(this)
mobx.useStrict(true) configure({ enforceActions: "always" })
mobx.whyRun() Removed
React.createClass + mobxReact.observer() observer(FunctionComponent) from mobx-react-lite
mobxReact.Provider + inject() React Context + useContext()

License

MIT

About

A collection of simple mobx examples

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Sponsor this project

Packages

No packages published

Contributors 6