pouchdb-async-storage
v0.0.4
Published
PouchDB adapter for AsyncStorageDOWN, for use in React Native
Downloads
7
Readme
pouchdb-async-storage
Work in progress - get PouchDB working with React Native's AsyncStorage as a backend.
Usage
You should be able to just do:
npm install --save pouchdb-async-storage
Then require it after PouchDB:
var PouchDB = require('pouchdb');
require('pouchdb-async-storage');
var db = new PouchDB('mydb', {adapter: 'asyncstorage'});
Build
npm install && npm run build