Comparing version 0.1.1 to 0.1.2
{ | ||
"name": "libsql", | ||
"version": "0.1.1", | ||
"version": "0.1.2", | ||
"description": "", | ||
@@ -60,5 +60,5 @@ "os": [ | ||
"optionalDependencies": { | ||
"@libsql/darwin-arm64": "0.1.1", | ||
"@libsql/linux-x64-gnu": "0.1.1" | ||
"@libsql/darwin-arm64": "0.1.2", | ||
"@libsql/linux-x64-gnu": "0.1.2" | ||
} | ||
} |
@@ -1,2 +0,2 @@ | ||
# libSQL API for Node | ||
# libSQL API for JavaScript/TypeScript | ||
@@ -8,12 +8,16 @@ [![npm](https://badge.fury.io/js/libsql.svg)](https://badge.fury.io/js/libsql) | ||
Please note you are currently encouraged to use the [libSQL SDK](https://github.com/libsql/libsql-client-ts) as it is more mature at this point and also supports serverless applications that only can use `fetch()`. | ||
## Features | ||
* In-memory databases and local database files, like SQLite | ||
* Remote database access to libSQL server | ||
* In-app replica that syncs with a libSQL server | ||
* In-memory and local libSQL/SQLite databases | ||
* Remote libSQL databases | ||
* Embedded, in-app replica that syncs with a remote libSQL database | ||
## Installing | ||
You can install the package with `npm`: | ||
You can install the package with: | ||
**Node:** | ||
```sh | ||
@@ -23,2 +27,16 @@ npm i libsql | ||
**Bun:** | ||
```sh | ||
bun add libsql | ||
``` | ||
**Deno:** | ||
Use the `npm:` prefix for package import: | ||
```typescript | ||
import Database from 'npm:libsql'; | ||
``` | ||
## Documentation | ||
@@ -25,0 +43,0 @@ |
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
28405
162