Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

blinkdb

Package Overview
Dependencies
Maintainers
1
Versions
18
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

blinkdb

A lightning fast, in-memory database for client-side JS

  • 0.14.0
  • latest
  • npm
  • Socket score

Version published
Weekly downloads
634
increased by46.42%
Maintainers
1
Weekly downloads
 
Created
Source

BlinkDB Logo

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


import { many } from "blinkdb";

const items = await many(userTable, {
  where: {
    name: { in: ["Alice", "Charlie"] },
    age: { gt: 24 },
  },
});

BlinkDB is not yet mature. If you aren't convinced with the current feature set, check back in version 1.0.0.

Motivation

Today, SPAs and modern UI frameworks are more complex than ever before, and in the biggest codebases, gigantic amounts of data are used in JS directly. Unfortunately, while user-friendly, the existing solutions - stores like Redux or MobX - are not optimized for performance with large quantities of entities.

Description

BlinkDB provides an alternative - a strongly optimized in-memory database for your frontend. With database features such as indexes, query optimization and support for both relational & non-relational data, BlinkDB allows you to query your data with filters, sort and paginate in one go - just like a real database, and just as performant (as far as a database can be in Javascript).

Getting started

FAQs

Package last updated on 19 Oct 2023

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc