web-sqlite-js 0.0.7 → 1.0.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (2) hide show
  1. package/README.md +25 -3
  2. package/package.json +1 -1
package/README.md CHANGED
@@ -1,5 +1,27 @@
1
- <h1 align="center">web-sqlite-js</h1>
2
- <p align="center"> <img src="docs/public/web-sqlite-js.gif" width="80%" style="border-radius: 10px;" />
1
+ <h1 align="center">web-sqlite-js</h1>
2
+
3
+ <p align="center">
4
+ <a href="https://web-sqlite-js.wuchuheng.com" target="_blank">
5
+ <img src="docs/public/web-sqlite-js.gif" width="80%" style="border-radius: 10px;" />
6
+ </a>
7
+ </p>
8
+
9
+ <p align="center">
10
+ <a href="https://github.com/wuchuheng/web-sqlite-js/actions/workflows/test.yml" target="_blank">
11
+ <img src="https://github.com/wuchuheng/web-sqlite-js/actions/workflows/test.yml/badge.svg" alt="Test" />
12
+ </a>
13
+ <a href="https://www.npmjs.com/package/web-sqlite-js" target="_blank">
14
+ <img src="https://img.shields.io/npm/v/web-sqlite-js.svg" alt="NPM Version" />
15
+ </a>
16
+ <a href="https://github.com/wuchuheng/web-sqlite-js/blob/main/LICENSE" target="_blank">
17
+ <img src="https://img.shields.io/github/license/wuchuheng/web-sqlite-js.svg" alt="License" />
18
+ </a>
19
+ <a href="https://bundlephobia.com/package/web-sqlite-js" target="_blank">
20
+ <img src="https://img.shields.io/bundlephobia/minzip/web-sqlite-js.svg" alt="Bundle Size" />
21
+ </a>
22
+ <a href="https://github.com/wuchuheng/web-sqlite-js/pulls" target="_blank">
23
+ <img src="https://img.shields.io/badge/PRs-welcome-brightgreen.svg" alt="PRs Welcome" />
24
+ </a>
3
25
  </p>
4
26
 
5
27
  `web-sqlite-js` is a friendly, out-of-the-box SQLite database for the web that makes persistent client-side storage simple for every developer.
@@ -43,7 +65,7 @@ For quick demos or plain HTML pages you can load the prebuilt module directly:
43
65
 
44
66
  ```html
45
67
  <script type="module">
46
- import openDB from "https://cdn.jsdelivr.net/npm/web-sqlite-js@0.0.7/dist/index.js";
68
+ import openDB from "https://cdn.jsdelivr.net/npm/web-sqlite-js@1.0.0/dist/index.js";
47
69
  // ...
48
70
  </script>
49
71
  ```
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "web-sqlite-js",
3
- "version": "0.0.7",
3
+ "version": "1.0.0",
4
4
  "description": "web-sqlite-js is a friendly, out-of-the-box SQLite database for the web that makes persistent client-side storage simple for every developer.",
5
5
  "workspaces": [
6
6
  "docs"