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
- Read the docs at https://blinkdb.io/docs/react.
- Check out the API reference at https://blinkdb.io/docs/reference/react.