npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2024 – Pkg Stats / Ryan Hefner

@dusty-phillips/rescript-dexie

v0.4.0

Published

Rescript bindings to the easy-to-use [Dexie](https://dexie.org) wrapper of IndexedDB.

Downloads

10

Readme

Rescript-Dexie

Rescript bindings to the easy-to-use Dexie wrapper of IndexedDB.

These bindings are not complete, but everything required for basic IndexedDB access should be working, including:

  • Define fully typed table schemas
  • Version and upgrade schemas
  • Create, update, delete records (including bulk operations)
  • Query by index
  • Query using criteria
  • Query using where clauses
  • Perform operations on the resulting Collections
  • Execute inside Transactions
  • React live queries (optional, with dexie-react-hooks installed)

Some of the more complex pieces of Dexie are missing from these bindings:

  • Translation of Dexie's JS error types into a Rescript-friendly paradigm
  • Dexie Hooks API or DBCore Middleware
  • Syncables
  • Addons, including Dexie Cloud

A couple things I haven't tested yet:

  • Not sure if things like compound primary keys are working
  • Probably schema upgrades will get confused when dealing with 'before' and 'after' types

Quick Start

Start by defining a small module for each table in your database, that describes the type of the id field, the structure of each record, and the name of the table:

module FriendSchema = {
  type id = int
  type t = {
    id: option<int>,
    name: string,
    color: [#Blue | #Red | #Purple],
  }
  let tableName = "friends"
}

Use the MakeTable functor to create a table for each schema:

module Friend = Dexie.Table.MakeTable(FriendSchema)

Construct a Dexie instance with the IndexedDB name:

let dexie = Dexie.Database.make(`hello dexie ${someNumber}`)

Describe the Dexie schema for each of your tables using an array of (name, schema) tuples:

let schema = [("friends", "++id,name,birthdate,color"), ...]

Create your initial version of the database and open it:

dexie
->Dexie.Database.version(1)
->Dexie.Version.stores(schema)
->ignore

dexie->Dexie.Database.opendb->ignore

Add and query your tables using the module you created with the MakeTable functor. Note that most functions return promises so you'll want to use async and await syntax.

Some things you can do:

dexie->Friend.bulkPut([
  {id: Some(1), name: "Chris", color: #Red},
  {id: Some(2), name: "Leroy", color: #Blue},
  {id: Some(3), name: "Jerome", color: #Purple},
  {id: Some(4), name: "Betty", color: #Purple},
])

dexie->Friend.add(None, name: "Xiao", color: #Blue)

dexie->Friend.getById(3)->Promise.then(friendOption => ...)

dexie
->Friend.where("name")
->Dexie.Where.anyOfIgnoreCase(["Leroy", "Xiao"])
->Dexie.Collection.first
->Promise.then(friend=> ...)

React live query hooks are also supported if you yarn add dexie-react-hooks:

let teamBlue = Dexie.LiveQuery.use0(() => {
  dexie->Friend.findByCriteria({color: #Blue})
})

There are hooks use0 through use7 that behave similarly to rescript-react's useEffect modelling.

Next Steps

I haven't documented this as thoroughly as I normally do in my projects. For the most part, follow Dexie's excellent documentation and assume the Rescript bindings are sane (or completely unavailable).

You can also refer to the unit tests to get a better idea of the things you can do with the bindings.

And there is a tiny React app in the examples/react folder.

Contributing

PRs and issues are welcome!

Testing

I use my rescript-zora library for testing. yarn test:watch should be all you need.

Releasing

This is for my reference:

  • update the version in bsconfig.json
  • bump the version in example/react
  • np