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

0.0.3 • 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

Dependencies (0)

    Dev Dependencies (3)

    Package Sidebar

    Install

    npm i @blinkdb/react

    Weekly Downloads

    0

    Version

    0.0.3

    License

    MIT

    Unpacked Size

    48.4 kB

    Total Files

    49

    Last publish

    Collaborators

    • froehlicha