All Projects β†’ ujjwalguptaofficial β†’ sqlweb

ujjwalguptaofficial / sqlweb

Licence: MIT license
SqlWeb is an extension of JsStore which allows to use sql query for performing database operation in IndexedDB.

Programming Languages

javascript
184084 projects - #8 most used programming language
PEG.js
56 projects
typescript
32286 projects
HTML
75241 projects

Projects that are alternatives of or similar to sqlweb

Localforage
πŸ’Ύ Offline storage, improved. Wraps IndexedDB, WebSQL, or localStorage using a simple but powerful API.
Stars: ✭ 19,840 (+52110.53%)
Mutual labels:  storage, indexeddb, websql
Jsstore
A complete IndexedDB wrapper with SQL like syntax.
Stars: ✭ 430 (+1031.58%)
Mutual labels:  storage, javascript-library, indexeddb
Remotestorage.js
⬑ JavaScript client library for integrating remoteStorage in apps
Stars: ✭ 2,155 (+5571.05%)
Mutual labels:  storage, javascript-library, indexeddb
Ngx Indexed Db
A service that wraps IndexedDB database in an Angular service. It exposes very simple observables API to enable the usage of IndexedDB without most of it plumbing.
Stars: ✭ 84 (+121.05%)
Mutual labels:  storage, indexeddb
Immortaldb
πŸ”© A relentless key-value store for the browser.
Stars: ✭ 2,962 (+7694.74%)
Mutual labels:  storage, indexeddb
Dexie.js
A Minimalistic Wrapper for IndexedDB
Stars: ✭ 7,337 (+19207.89%)
Mutual labels:  storage, indexeddb
validate-polish
Utility library for validation of PESEL, NIP, REGON, identity card etc. Aimed mostly at Polish enviroment. [Polish] Walidacja numerΓ³w pesel, nip, regon, dowodu osobistego.
Stars: ✭ 31 (-18.42%)
Mutual labels:  javascript-library, typescript-library
necktie
Necktie – a simple DOM binding tool
Stars: ✭ 43 (+13.16%)
Mutual labels:  javascript-library, typescript-library
Vlf
A Vue plugin from localForage.vue-localForage or vlf
Stars: ✭ 99 (+160.53%)
Mutual labels:  storage, indexeddb
imtool
πŸ–ΌοΈ Client-side canvas-based image manipulation library.
Stars: ✭ 38 (+0%)
Mutual labels:  javascript-library, typescript-library
jsstore-examples
This repo contains examples of jsstore for different frameworks & tools
Stars: ✭ 31 (-18.42%)
Mutual labels:  indexeddb, jsstore
persistence
πŸ’Ύ Persistence provides a pretty easy API to handle Storage's implementations.
Stars: ✭ 18 (-52.63%)
Mutual labels:  storage, indexeddb
space-client
File Upload (encrypted), File Sharing, Filecoin Markets (TBD), and User Controlled Data. You can access same methods from the Space Daemon using our JS client, so you don't need to worry about gRPC calls.
Stars: ✭ 73 (+92.11%)
Mutual labels:  storage, javascript-library
client-persist
Offline storage for your web client. Supports IndexedDB, WebSQL, localStorage and sessionStorage with an easy to crawl with API.
Stars: ✭ 14 (-63.16%)
Mutual labels:  indexeddb, websql
Gojs
JavaScript diagramming library for interactive flowcharts, org charts, design tools, planning tools, visual languages.
Stars: ✭ 5,739 (+15002.63%)
Mutual labels:  javascript-library, typescript-library
constant-time-js
Constant-time JavaScript functions
Stars: ✭ 43 (+13.16%)
Mutual labels:  javascript-library, typescript-library
safe-touch
β›“ Runtime optional chaining for JS
Stars: ✭ 71 (+86.84%)
Mutual labels:  javascript-library, typescript-library
rxjs-ninja
RxJS Operators for handling Observable strings, numbers, booleans and more
Stars: ✭ 68 (+78.95%)
Mutual labels:  javascript-library, typescript-library
indexeddb-orm
Indexed DB ORM
Stars: ✭ 53 (+39.47%)
Mutual labels:  javascript-library, indexeddb
idbstudio
idbstudio is a management tools for indexeddb library jsstore. It helps users to execute , debug and learn jsstore query.
Stars: ✭ 30 (-21.05%)
Mutual labels:  indexeddb, jsstore

Build Status npm version

SqlWeb

SqlWeb is an extension of JsStore which allows to use sql query for performing database operation in IndexedDB.

Website

https://github.com/ujjwalguptaofficial/sqlweb/wiki

Examples

import * as JsStore from 'jsstore';
import SqlWeb from "sqlweb";

// create jsstore connection
var connection = new JsStore.Instance('jsstore worker path');

// add SqlWeb 
connection.addPlugin(SqlWeb);

// run select query
connection.$sql.run("select * from Customers").then(function(result) {
    console.log(result);
});

For a complete example - check out below link.

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].