Update Javascript client

Welcome to the reference documentation for the Update Javascript client. This documentation is intended for developers who want to use the Update Javascript client to build their own applications.

For support, join the Update Discord server or open a GitHub issue.


Installation

npm install @updatedev/js

Quickstart

An easy way to get started with Update is to use the create-update-app command. From this tool, you can choose a framework and have a fully working Update application in seconds. All you need to do is provide a name and your API keys.

npx create-update-app@latest

See our examples for source code and examples of how to use Update in different frameworks.


Initializing

Create Update Client

To use Update throughout your application, you'll need to initialize the main client first.

Depending on what auth provider you are using, you can initialize the client with different options.

import { createClient } from "@updatedev/js/supabase";
const update = createClient({
process.env.NEXT_PUBLIC_UPDATE_PUBLIC_KEY!,
process.env.NEXT_PUBLIC_SUPABASE_URL!,
process.env.NEXT_PUBLIC_SUPABASE_ANON_KEY!,
{
billing: {
environment: process.env.NODE_ENV === "production" ? "live" : "test",
},
}
});

Next.js

Using Update in a SSR environment

If you're using Update in a framework like Next.js, initializing the client requires a bit more setup.

You should create a utils/update directory where you can create client, middleware, and server files.

First, install the @updatedev/ssr package.

npm install @updatedev/js @updatedev/ssr
utils/update/client.ts
import { createBrowserClient } from "@updatedev/ssr/supabase";
export function createClient() {
return createBrowserClient(
process.env.NEXT_PUBLIC_UPDATE_PUBLIC_KEY!,
process.env.NEXT_PUBLIC_SUPABASE_URL!,
process.env.NEXT_PUBLIC_SUPABASE_ANON_KEY!,
{
billing: {
environment: process.env.NODE_ENV === "production" ? "live" : "test",
},
}
);
}

Supabase

Using Update with Supabase

Update has built-in support for Supabase.

To use Update with Supabase, you can use the createClient function from the @updatedev/js package.

import { createClient } from "@updatedev/js/supabase";
const client = createClient({
process.env.NEXT_PUBLIC_UPDATE_PUBLIC_KEY!,
process.env.NEXT_PUBLIC_SUPABASE_URL!,
process.env.NEXT_PUBLIC_SUPABASE_ANON_KEY!,
{
billing: {
environment: process.env.NODE_ENV === "production" ? "live" : "test",
},
}
});

All methods from the @supabase/js client are available on the update client. See the Supabase docs for full documentation. Some examples are below.

const user = await client.auth.getUser();

The base Supabase client also has extended methods for Update.

const { data, error } = await client.billing.createCheckoutSession();

Get Products

Get all products that you've created in the Update dashboard.

const { data, error } = await client.billing.getProducts();
Response
{
"data": {
"products": [
{
"id": "f153c19a-b68f-49cd-8327-9fa85442f01c",
"name": "Basic",
"description": "",
"prices": [
{
"id": "32b3cce4-d9ce-49a2-a151-f5b85008a6b6",
"unit_amount": 1000,
"currency": "usd",
"interval": "month",
"interval_count": 1
}
]
}
]
},
"error": null
}

Get User Subscriptions

Get all subscriptions for a user.

const { data: subscriptionData } = await client.billing.getSubscriptions();
Response
{
"data": {
"subscriptions": [
{
"id": "3b6da9f5-d0b3-4056-8ab7-621fa5d7af28",
"status": "active",
"cancel_at_period_end": false,
"canceled_at": null,
"current_period_start": "2025-03-16T14:49:43+00:00",
"current_period_end": "2025-04-16T14:49:43+00:00",
"price": {
"id": "32b3cce4-d9ce-49a2-a151-f5b85008a6b6",
"unit_amount": 1000,
"currency": "usd",
"interval": "month",
"interval_count": 1
},
"product": {
"id": "f153c19a-b68f-49cd-8327-9fa85442f01c",
"name": "Basic",
"description": "",
"status": "active"
}
}
]
},
"error": null
}

Create Checkout Session

In Update, you can create a checkout session to sell subscriptions and one-time products. We connect with your billing provider to create the session. For now, we only support Stripe.

A typical flow is to get the price id from the getProducts function and then redirect the user to the checkout session.

const { data, error } = await client.billing.createCheckoutSession(
priceId,
{
redirect_url: 'http://localhost:3000/protected/subscription',
},
);

Parameters

price_idstringRequired

The price id of the product to create a checkout session for.

options.redirect_urlstringOptional

The URL to redirect the user to after the checkout session is created.


Cancel Subscription

Cancel a subscription.

await client.billing.updateSubscription(id, {
cancel_at_period_end: true,
});

Reactivate Subscription

Reactivate a subscription.

await client.billing.updateSubscription(id, {
cancel_at_period_end: false,
});

List Entitlements

List all entitlements for a user.

const { data, error } = await client.entitlements.list();
Response
{
"data": {
"entitlements": [
"premium",
"pro",
"enterprise"
]
},
"error": null
}

Check Entitlement

Check if a user has an entitlement.

const { data, error } = await client.entitlements.check("premium");
Response
{
"data": {
"hasAccess": true
},
"error": null
}