Skip to content

trulyursdelv/indexed

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

39 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Indexed 🛸

Minimally-touched indexed database library structured after WebStorage.

const db = await Indexed.open("testdb");

await db.set("auth", {
  name: "John Doe",
  email: "johndoe@gmail.com"
});

const name = await db.get("auth/name");
const email = await db.get("auth/email");

Why Indexed?

Manually managing an indexed database is complex and takes a lot of time to implement.

In Indexed, you can manage an indexed database with ease.

Forget object stores, transactions, or implementing event listeners. With Indexed, you can easily write, read, and delete a data in just a single trigger.

Installation

Since Indexed uses client-side features (indexedDB and cookies), it is highly recommended to use CDN.

<script src="https://cdn.jsdelivr.net/gh/creuserr/indexed@main/dist/v2/indexed.min.js"></script>

Documentation

About

Minimally-touched indexed database library structured after WebStorage.

Topics

Resources

License

Stars

Watchers

Forks