
Product
Introducing Module Reachability: Focus on the Vulnerabilities That Matter
Module Reachability filters out unreachable CVEs so you can focus on vulnerabilities that actually matter to your application.
conbo-cordova-nativestorage
Advanced tools
Persistent storage classes for hybrid ConboJS apps using cordova-plugin-nativestorage
This library contains persistent storage classes for hybrid ConboJS apps using
cordova-plugin-nativestorage
, as an alternative to ConboJS's built-in
LocalStorage
related classes.
NativeHash
is a direct replacement for LocalHash
; andNativeList
is a direct replacement for LocalList
Any data currently saved to LocalStorage
by a LocalHash
or LocalList
with
the same name will automatically be migrated to NativeStorage
on first use.
cordova plugin add cordova-plugin-nativestorage
npm i conbo-cordova-nativestorage
Use of the classes in this library is almost identical to ConboJS's built-in
LocalStorage
related classes, see https://conbo.mesmotronic.com/, although
you should wait until the 'ready'
event has fired (usually just a few
milliseconds after Cordova's 'deviceready'
event) before interacting with
instances of classes in this library, for example:
let list = new NativeList({name:'myList'});
list.addEventListener('ready', () => console.log('Your native list is ready to go!'));
// or
let list = await NativeList.create({name:'myList'});
// or
NativeList.create({name:'myList'}).then(list =>
{
this.list = list;
console.log('Your native list is ready to go!'));
});
FAQs
Persistent storage classes for hybrid ConboJS apps using cordova-plugin-nativestorage
The npm package conbo-cordova-nativestorage receives a total of 0 weekly downloads. As such, conbo-cordova-nativestorage popularity was classified as not popular.
We found that conbo-cordova-nativestorage demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Product
Module Reachability filters out unreachable CVEs so you can focus on vulnerabilities that actually matter to your application.
Product
Socket is introducing a new way to organize repositories and apply repository-specific security policies.
Research
Security News
Socket researchers uncovered malicious npm and PyPI packages that steal crypto wallet credentials using Google Analytics and Telegram for exfiltration.