Package Exports
- nosql-encoding
This package does not declare an exports field, so the exports above have been automatically detected and optimized by JSPM instead. If any package subpath is missing, it is recommended to post an issue to the original package (nosql-encoding) to support the "exports" field. If that is not possible, create a JSPM override to customize the exports field for this package.
Readme
Nosql Encoding Ability.
Add the encoding ability to the abstract-nosql database.
Usage
Add the Encoding ability to a nosql database
npm install nosql-encoding
var addEncodingFeatureTo = require("nosql-encoding")
var LevelDB = addEncodingFeatureTo(require("leveldown-sync"))
var db = LevelDB('location')
db.open({keyEncoding: 'text', valueEncoding: 'json'})
Develop a nosql database with encoding ability
There is no need to force inherited from the Encoding class.
Please let the user decide whether to use the Encoding feature.
Encoding Codec
See buffer-codec.

