gluesql
v0.15.1
Published
GlueSQL is quite sticky, it attaches to anywhere
Downloads
104
Maintainers
Readme
GlueSQL.js
GlueSQL.js is a SQL database for web browsers and Node.js. It works as an embedded database and entirely runs in the browser. GlueSQL.js supports in-memory storage backend, localStorage, sessionStorage and indexedDB backend supports.
Learn more at the https://gluesql.org/docs
Installation
Yarn
yarn add gluesql
npm
npm install gluesql
JavaScript modules
import { gluesql } from 'https://cdn.jsdelivr.net/npm/[email protected]/gluesql.js';
Usage
import { gluesql } from 'gluesql';
const db = await gluesql();
await db.query(`
CREATE TABLE User (id INTEGER, name TEXT);
INSERT INTO User VALUES (1, "Hello"), (2, "World");
`);
const [{ rows }] = await db.query('SELECT * FROM User;');
console.log(rows);
License
This project is licensed under the Apache License, Version 2.0 - see the LICENSE file for details.