Giter Club home page Giter Club logo

libsql-client-ts's Introduction

JavaScript & TypeScript SDK for libSQL

Node.js CI License

This is the source repository of the JavaScript & TypeScript SDK for libSQL.

You can use this SDK to interact with the following types of databases:

Installation

npm install @libsql/client

This step is not required if using the Deno style import shown below.

Using the library with Next.js

To use libsql-client, you need to add the following to your Next configuration:

const nextConfig = {
  experimental: {
    serverComponentsExternalPackages: ["libsql"],
  },
}

module.exports = nextConfig

Create a database client object

Importing

There are multiple ways to import the module. For Node.js and other environments where you need to use a local SQLite file URL, as well as network access to sqld:

import { createClient } from "@libsql/client";

For environments that don't have a local filesystem, but support HTTP or WebSockets, including:

  • Browsers
  • CloudFlare Workers
  • Vercel Edge Functions
  • Netlify Edge Functions
import { createClient } from "@libsql/client/web";

For Deno:

// replace [version] with the client version
import { createClient } from "https://esm.sh/@libsql/client@[version]/web";

Local SQLite files

To connect to a local SQLite database file using a local file URL:

const config = {
  url: "file:local.db"
};
const db = createClient(config);
const rs = await db.execute("SELECT * FROM users");
console.log(rs);

libSQL sqld instance

To connect to a [libSQL sqld] instance using a libsql: URL:

import { createClient } from "@libsql/client"

const config = {
  url: "libsql://[your-sqld-host]",
  authToken: "[your-token]"
};
const db = createClient(config);
const rs = await db.execute("SELECT * FROM users");
console.log(rs);

If you are querying a sqld instance on your local machine, add ?tls=0 to the URL to disable TLS.

authToken in the config object is a token that your sqld instance recognizes to allow client access. For Turso databases, a token is obtained using the Turso CLI. No token is required by default when running sqld on its own.

Supported URLs

The client can connect to the database using different methods depending on the scheme (protocol) of the passed URL:

Local SQLite file URLs

A file: URL connects to a local SQLite database (using libsql).

  • This is only supported on Node.js. It will not work in the browser or with most hosted environments that don't provide access to a local filesystem.
  • file:/absolute/path or file:///absolute/path is an absolute path on local filesystem.
  • file:relative/path is a relative path on local filesystem.
  • file://path is not a valid URL.

libSQL sqld instances

The client can connect to sqld using HTTP or WebSockets. Internally, it uses the Hrana protocol implemented by hrana-client-ts.

libsql URLs

libsql: URL leaves the choice of protocol to the client. We are now using HTTP by default, but this may change in the future.

  • By default, a libsql: URL uses TLS (i.e. https: or wss:).
  • To disable TLS, you can pass the query parameter ?tls=0. You will also need to specify the port.

HTTP URLs

http: or https: URLs connect to sqld using HTTP.

  • This is supported in Node.js and in every environment that supports the Web fetch API.

WebSocket URLs

ws: or wss: URLs use a stateful WebSocket to connect to sqld.

  • WebSockets are supported in Node.js and browser.
  • If you are running in a cloud or edge hosted environments, you should check to see if WebSockets are supported. If not, change the URL to use an HTTP URL.

Additional documentation

You can find more examples of how to use this library using the Turso docs for JS&TS.

License

This project is licensed under the MIT license.

Contribution

Unless you explicitly state otherwise, any contribution intentionally submitted for inclusion in @libsql/client by you, shall be licensed as MIT, without any additional terms or conditions.

libsql-client-ts's People

Contributors

bearlemma avatar bors[bot] avatar codingdoug avatar honzasp avatar penberg avatar piotrkira avatar psarna avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.