You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
[libSQL](https://github.com/libsql/libsql) is an open source, open contribution fork of SQLite.
6
6
This source repository contains libSQL API bindings for Node, which aims to be compatible with [better-sqlite3](https://github.com/WiseLibs/better-sqlite3/), but with opt-in promise API.
@@ -16,7 +16,7 @@ This source repository contains libSQL API bindings for Node, which aims to be c
16
16
You can install the package with `npm`:
17
17
18
18
```sh
19
-
npm i libsql-experimental
19
+
npm i libsql
20
20
```
21
21
22
22
## Documentation
@@ -28,7 +28,7 @@ npm i libsql-experimental
28
28
To try out your first libsql program, type the following in `hello.js`:
29
29
30
30
```javascript
31
-
importDatabasefrom'libsql-experimental';
31
+
importDatabasefrom'libsql';
32
32
33
33
constdb=newDatabase(':memory:');
34
34
@@ -46,10 +46,10 @@ and then run:
46
46
$ node hello.js
47
47
```
48
48
49
-
To use the promise API, import `libsql-experimental/promise`:
0 commit comments