0.0.5 • Published 9 years ago

react-level v0.0.5

Weekly downloads
3
License
MIT
Repository
github
Last release
9 years ago

react-level

levelup API wrapper for react-native AsyncStorage

var level = require('react-level')
var db = level('path/to/db', { /*...options...*/ })
db.put('blah');
db.batch([
  { type: 'put', key: 'tasty', value: 'wheat' },
  { type: 'put', key: 'chicken', value: 'feet' }
])