npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2024 – Pkg Stats / Ryan Hefner

cordova-plugin-savofflite-sqlite

v1.0.4

Published

cordova plugin for offline sqlite storage using pouchdb

Downloads

5

Readme

cordova-plugin-savofflite

This plugin uses pouchdb 5.4.5 to make use of the automatic detection of the sqlite plugin when using websql adapter to create or open databases. It also uses a forked version of the cordova-sqlite-storage plugin which was converted into a seperate plugin with id com.phonegap.plugins.sqlite. This forked plugin can be found at https://www.npmjs.com/package/com.phonegap.plugins.sqlite and uses version 0.7.0 of the original cordova-sqlite-storage plugin because of how well it works with pouchdb.

Installation

npm link :- https://www.npmjs.com/package/cordova-plugin-savofflite

To add to your project :- cordova plugin add cordova-plugin-savofflite

Functions

createDbOfflite(db) // Function that creates the db with name that is passed in (here taht name is db)

putOfflite(dbz, _id, obj) // Function to put data [obj] which is in JSON format into database [db] with an id [_id]

getOfflite(dbz, _id) // Function to get data that was put into the database that has id = _id

remOfflite(dbz, _id) // Function to remove data that was put into the database with id = _id

closeDbOfflite(dbz) // Fuction to close the database connection

delDbOfflite(dbz) // Fuction to delete database

getAllDocIdsOfflite(dbz) // Fuction to get doc ids alone of all saved data in database

getAllDocsOfflite(dbz) // Fuction to get all docs along with doc data and doc ids of all saved data in database

infoDbOfflite(dbz) // Fuction that returns information about the database

How to use

Require the savofflite.js file using cordova.require("cordova-plugin-savofflite.savofflite"), after assinging this to a variable use that variable to access all the fuctions available in the javascript file.

Supported Platforms

  • Android
  • iOS

Example

var savoff=cordova.require("cordova-plugin-savofflite.savofflite");

var db= 'dbdoordiebrah'; savoff.createDbOfflite(db);

var obj = 'one'; var _id= 'oneid'; savoff.putOfflite(db, _id, obj);

savoff.getOfflite(dbz, _id)

savoff.remOfflite(dbz, _id)

savoff.closeDbOfflite(dbz)

savoff.delDbOfflite(dbz)

savoff.getAllDocIdsOfflite(dbz)

savoff.getAllDocsOfflite(dbz)

savoff.infoDbOfflite(dbz)

More about us!

Find out more or contact us directly here :- http://www.neutrinos.co/

Facebook :- https://www.facebook.com/Neutrinos.co/ LinkedIn :- https://www.linkedin.com/company/25057297/ Twitter :- https://twitter.com/Neutrinosco Instagram :- https://www.instagram.com/neutrinos.co/