TypeScript / JS
Turso Quickstart (TypeScript / JS)
Get started with Turso and TypeScript using the libSQL client in a few simple steps
In this JavaScript quickstart we will learn how to:
- Retrieve database credentials
- Install the JavaScript libSQL client
- Connect to a remote Turso database
- Execute a query using SQL
1
Retrieve database credentials
You will need an existing database to continue. If you don’t have one, create one.
Get the database URL:
Get the database authentication token:
Assign credentials to the environment variables inside .env
.
You will want to store these as environment variables.
2
Install @libsql/client
Begin by installing the @libsql/client
dependency in your project:
3
Initialize a new client
Next add your database URL and auth token:
4
Execute a query using SQL
You can execute a SQL query against your existing database by calling execute()
:
If you need to use placeholders for values, you can do that: