@hexie/blinkdb-react
TypeScript icon, indicating that this package has built-in type declarations

0.0.4 • Public • Published

BlinkDB Logo

BlinkDB is a in-memory JS database optimized for large scale storage on the frontend.


const Component = () => {
  const userTable = useTable((model: Model) => model.users);
  const { data: firstUser } = await useMany(userTable, {
    where: {
      name: { in: ["Alice", "Charlie"] },
      age: { gt: 24 },
    },
  });
  ...
}

@blinkdb/react

This package contains auxiliary methods for smoothly integrating BlinkDB into React.

Getting started

Readme

Keywords

none

Package Sidebar

Install

npm i @hexie/blinkdb-react

Weekly Downloads

20

Version

0.0.4

License

MIT

Unpacked Size

48.5 kB

Total Files

49

Last publish

Collaborators

  • thehexie