Laco Versions Save

⚡️Ultra lightweight state management for React and Inferno

v1.1.0

5 years ago

Critical bug fix - please update

v1.0.0

5 years ago

Breaking changes and new methods

  • All Laco routere has been deprecated.
  • Store.set() has changed from Store.set({ count: SomeStore.get().count + 1 }, "increment") to Store.set((state) => { count: state.count + 1 }, "increment")
  • Store.replace() has been introduced - more on it here

v0.4.0

6 years ago

DEPRECATION of state persistence This is in favor of hot reloading that seems to work really well in e.g. Next.js