Install

npm install dub

Options

The SDK constructor accepts an options object with the following properties:

token
string
required

The API token for the Dub.co API. You can create your token from the Dub.co dashboard.

Usage

import { Dub } from "dub";

const dub = new Dub({
  token: "DUB_API_KEY",
});

await dub.links.create({
  url: "https://google.com",
});