JSPM

  • ESM via JSPM
  • ES Module Entrypoint
  • Export Map
  • Keywords
  • License
  • Repository URL
  • TypeScript Types
  • README
  • Created
  • Published
  • Downloads 129
  • Score
    100M100P100Q76351F
  • License Unlicense

A serverless SQLite database inside your browser.

Package Exports

  • @vanillaspa/sqlite-database
  • @vanillaspa/sqlite-database/index.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 (@vanillaspa/sqlite-database) to support the "exports" field. If that is not possible, create a JSPM override to customize the exports field for this package.

Readme

Getting started

To install the sqlite-database into your project, simply run

npm install @vanillaspa/sqlite-database

How-To

Now integrate the sqlite datebase into your app:

<script type="module">
  import * as sqlite from '@vanillaspa/sqlite-database';
  window.sqlite = sqlite;
</script>

This is only a recommendation. You can use it however you like. With the sqlite object attached to the window object, you have access to the sqlite-database in your WebComponents.