Ambry is WebStorage wrapper that makes your life easier. It's target is to improve developer experience and to cover inconsistency in browser implemetations. Using Ambry you can create storages with namespaces, control scheme version and subscribe to particular storage.
Tests are powered by BrowserStack — cool cross browser testing tool.
npm install --save ambry
import { createStorage } from 'ambry';
const storage = createStorage(config);
config
consists of:
type
— should be'localStorage'
or'sessionStorage'
(Default value:'localStorage'
)namespace
- prefix for your storage in storage key field (Default value:null
)schemeVersion
- your scheme version which is useful in cases your storage structure could change over time (Default value:null
)clearOnError
- iftrue
clears field when parsing forgetItem()
fails or whensetItem()
is impossible because of storage quota has exceeded (Default value:true
)doNotThrow
- iftrue
then creates dummy storage instead of throwing error. Dummy storage has all methods that standard storage has (Default value:true
)
storage.setItem(field, value);
If quota is exceeded and you have clearOnError
set to true
then storage will be cleared, then scheme version will be set if needed and then setItem()
will be called another time
storage.getItem(field);
If value for that field can't be parsed and clearOnError
is set to true
then that value will be removed from storage
storage.removeItem(field);
storage.clear();
storage.setSchemeVersion(version);
This will clear storage if previous version is not strictly equal to new version
const unsubscribe = storage.subscribe(handler);
This will subscribe to that particular storage changes only. It returns new function which when called will unsubscribe your handler.
The handler
is callback function which has such parameters:
key
- the field name inside of storageoldValue
- previous value for that keynewValue
- new value for that key
If you have Web Storage in your app you can just createStorage()
to work with it as with Ambry storage. You can even split your storage data to multiple Ambry storages using namespace
Your contributions are always welcome! Please feel free to create issues.