sqlite-actor 0.1.5 → 0.1.6
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 +4 -1
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -30,7 +30,10 @@ Currently, `sqlite-actor` bundles the following extensions directly into its WAS
|
|
|
30
30
|
npm install sqlite-actor
|
|
31
31
|
```
|
|
32
32
|
|
|
33
|
-
|
|
33
|
+
> [!TIP]
|
|
34
|
+
> **Using Cloudflare Workers?** You must import the WASM module directly to avoid "No-Eval" restrictions. See the [Cloudflare Workers section](#cloudflare-workers--durable-objects) below.
|
|
35
|
+
|
|
36
|
+
### Basic Usage
|
|
34
37
|
```javascript
|
|
35
38
|
import { SqliteActor } from "sqlite-actor";
|
|
36
39
|
|