Package Exports
- @brighter/storage
- @brighter/storage/src/index.js
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 (@brighter/storage) to support the "exports" field. If that is not possible, create a JSPM override to customize the exports field for this package.
Readme
@brighter/storage
This is the core object storage library.
Instead of manually installing and injecting the dependencies, you'll most likely want to use one of the following storage adapters that come pre-bundled with everything required:
If you still wish to manually install and inject the dependencies, please proceed.
Quick Start
Installation, using npm:
npm i @brighter/storageUsage:
import { Storage } from '@brighter/storage'
const storage = Storage({
type: 'local',
path: '/tmp/storage'
})
const main = async () => {
await storage.write('msg', 'hi')
const msg = await storage.read('msg')
console.log(msg)
}
main().catch(console.error)For more information:
- have a look at the demo folder or
- dive straight into the documentation.