Research
Security News
Quasar RAT Disguised as an npm Package for Detecting Vulnerabilities in Ethereum Smart Contracts
Socket researchers uncover a malicious npm package posing as a tool for detecting vulnerabilities in Etherium smart contracts.
cordova-plugin-indexeddb
Advanced tools
Implements Indexed Database API support for Apache Cordova apps based on IndexedDBShim implementation.
Support of Android and iOS.
Plugin follows Indexed Database API specification, no special changes are required. The following sample code creates todo
store (if not exist) and adds new record.
var openReq = window.indexedDB.open("sampleDatabase");
openReq.onupgradeneeded = function (event) {
var db = event.target.result;
db.createObjectStore("todo", {autoIncrement: true});
};
openReq.onsuccess = function (event) {
var db = event.target.result,
sampleItem = {
todo: "my todo item",
added_on: new Date()
};
var addReq = db.transaction("todo", "readwrite").objectStore("todo").add(sampleItem);
addReq.onsuccess = function (event) {
console.log("Operation completed successfully");
};
addReq.onerror = function (event) {
console.log("Operation failed");
};
}
openReq.onerror = function (event) {
console.log("Operation failed");
}
Plugin is Apache Cordova CLI 3.x compliant.
Make sure an up-to-date version of Node.js is installed, then type the following command to install the Cordova CLI:
npm install -g cordova
Create a project and add the platforms you want to support:
cordova create sampleApp
cd sampleApp
cordova platform add android
cordova platform add ios
Add IndexedDB plugin to your project:
cordova plugin add com.msopentech.indexeddb
Build and run, for example:
cordova build android
cordova emulate android
To learn more, read Apache Cordova CLI Usage Guide.
Copyright (c) Microsoft Open Technologies, Inc. All Rights Reserved. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information.
FAQs
Cordova IndexedDB Plugin
The npm package cordova-plugin-indexeddb receives a total of 3 weekly downloads. As such, cordova-plugin-indexeddb popularity was classified as not popular.
We found that cordova-plugin-indexeddb 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.
Research
Security News
Socket researchers uncover a malicious npm package posing as a tool for detecting vulnerabilities in Etherium smart contracts.
Security News
Research
A supply chain attack on Rspack's npm packages injected cryptomining malware, potentially impacting thousands of developers.
Research
Security News
Socket researchers discovered a malware campaign on npm delivering the Skuld infostealer via typosquatted packages, exposing sensitive data.