Package Exports
- gluesql
- gluesql/gluesql.js
- gluesql/gluesql.node.js
This package does not declare an exports field, so the exports above have been automatically detected and optimized by JSPM instead. If any package subpath is missing, it is recommended to post an issue to the original package (gluesql) to support the "exports" field. If that is not possible, create a JSPM override to customize the exports field for this package.
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 gluesqlnpm
npm install gluesqlJavaScript modules
import { gluesql } from 'https://cdn.jsdelivr.net/npm/gluesql/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.