web-sqlite-js 1.0.3 → 1.0.5
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.
- package/README.md +7 -1
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -66,7 +66,7 @@ For quick demos or plain HTML pages you can load the prebuilt module directly:
|
|
|
66
66
|
|
|
67
67
|
```html
|
|
68
68
|
<script type="module">
|
|
69
|
-
import openDB from "https://cdn.jsdelivr.net/npm/web-sqlite-js@1.0.
|
|
69
|
+
import openDB from "https://cdn.jsdelivr.net/npm/web-sqlite-js@1.0.5/dist/index.js";
|
|
70
70
|
// ...
|
|
71
71
|
</script>
|
|
72
72
|
```
|
|
@@ -275,3 +275,9 @@ await db.transaction(async (tx) => {
|
|
|
275
275
|
// throw new Error('Something went wrong');
|
|
276
276
|
});
|
|
277
277
|
```
|
|
278
|
+
|
|
279
|
+
## Star History
|
|
280
|
+
|
|
281
|
+
<p align="left">
|
|
282
|
+
<img src="https://api.star-history.com/svg?repos=wuchuheng/web-sqlite-js&type=date&legend=top-left" alt="Star History" width='50%'/>
|
|
283
|
+
</p>
|
package/package.json
CHANGED