fortune-localforage

1.3.0 • Public • Published

Fortune localForage

npm Version License

donate patreon paypal

This is an adapter for Fortune.js that uses localForage which wraps IndexedDB, WebSQL, or localStorage. There is also a Cordova SQLite Driver.

$ npm install localforage fortune-localforage

Usage

This module works in web browsers only

const fortune = require('fortune')
const localForageAdapter = require('fortune-localforage')
 
const localForage = require('localforage') 
 
const store = fortune(recordTypes, {
  adapter: [localForageAdapter, {
      // Name of the IndexedDB database to use. Defaults to `fortune`.
      name: 'fortune',      
      // localforage config
      config: {
        // allowed drivers and priority, same as using driver
        driver: [localforage.INDEXEDDB, localforage.WEBSQL, localforage.LOCALSTORAGE],
        version     : 1.0,
        size        : 4980736, // Size of database, in bytes. WebSQL-only for now.
        storeName   : 'keyvaluepairs', // Should be alphanumeric, with underscores.
        description : 'some description'
      }
      // or just send driver
      driver: [localforage.INDEXEDDB, localforage.WEBSQL, localforage.LOCALSTORAGE],
    }]
})

GraphQL

If you want to use GraphQL to query and mutate data (such as with a matching server schema) check out [GraphQL Genie](https://github.com/genie-team/graphql-genie

License

This software is licensed under the MIT license.

Contribute or Donate

  • Code Contributions
    • Fork
    • Make Changes
    • Run the following and make sure no failures or errors
      • npm run test
      • npm run lint
      • npm run build
    • Open pull request
  • Donate
    • genie-team products are outcomes of a hobby and receive no other funding, any and all support would be greatly appreciated if you find Genie products useful. Your support will encourage faster development of bug fixes, new features and new products.
    • donate (preferred)
    • patreon
    • paypal

Versions

Current Tags

  • Version
    Downloads (Last 7 Days)
    • Tag
  • 1.3.0
    1
    • latest

Version History

  • Version
    Downloads (Last 7 Days)
    • Published
  • 1.3.0
    1
  • 1.2.0
    0
  • 1.1.0
    0
  • 1.0.0
    0

Package Sidebar

Install

npm i fortune-localforage

Weekly Downloads

1

Version

1.3.0

License

MIT

Unpacked Size

107 kB

Total Files

10

Last publish

Collaborators

  • acoreyj