Skip to content

Preact integration for Nano Stores, a tiny state manager with many atomic tree-shakable stores

License

Notifications You must be signed in to change notification settings

aleksandrjet/nanostores-preact

 
 

Repository files navigation

Nano Stores Preact

Preact integration for Nano Stores, a tiny state manager with many atomic tree-shakable stores.

  • Small. Less than 1 KB. Zero dependencies.
  • Fast. With small atomic and derived stores, you do not need to call the selector function for all components on every store change.
  • Tree Shakable. The chunk contains only stores used by components in the chunk.
  • Was designed to move logic from components to stores.
  • It has good TypeScript support.
import { useStore } from '@nanostores/preact'

import { profile } from '../stores/profile.js'

export const Header = () => {
  const { userId } = useStore(profile)
  return <header>{currentUser.name}</header>
}
Sponsored by Evil Martians

About

Preact integration for Nano Stores, a tiny state manager with many atomic tree-shakable stores

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • TypeScript 85.6%
  • JavaScript 14.4%