0.0.0 • Published 3 years ago

indexeddb v0.0.0

Weekly downloads
6
License
-
Repository
-
Last release
3 years ago

Actions Status codecov License: MIT

A pure-JavaScript, persistent implementation of IndexedDB.

WhatWhere
Discussionhttps://github.com/bigeasy/indexeddb/issues/1
Documentationhttps://bigeasy.github.io/indexeddb
Sourcehttps://github.com/bigeasy/indexeddb
Issueshttps://github.com/bigeasy/indexeddb/issues
CIhttps://travis-ci.org/bigeasy/indexeddb
Coverage:https://codecov.io/gh/bigeasy/indexeddb
License:MIT

IndexedDB installs from NPM.

npm install indexeddb

This README.md is also a unit test using the Proof unit test framework. We'll use the Proof okay function to assert out statements in the readme. A Proof unit test generally looks like this.

require('proof')(4, async okay => {
    okay('always okay')
    okay(true, 'okay if true')
    okay(1, 1, 'okay if equal')
    okay({ value: 1 }, { value: 1 }, 'okay if deep strict equal')
})