@short.io/client-node
TypeScript icon, indicating that this package has built-in type declarations

1.0.3 • Public • Published

Short.io Node.js SDK

The Short.io Node.js official SDK client is a library that allows you to integrate short.io URL shortening and link management API with your Node.js application in an easy and elegant way.

API reference

See the API docs for more information.

Installing

To install this package, type:

npm i @short.io/client-node

Getting Started

First you need to get your API key from the Short.io dashboard in the Integrations & API section. This SDK contains methods for working with links, domains and statistics. Import the Shortio class:

import { Shortio } from "shortio";

Usage

Then create an instance of the Shortio class, and pass your API key as the first parameter:

const shortio = new Shortio("YOUR_API_KEY");

To get the domain list, you can use the following code:

const domains = await shortio.domain.list();

Get the link list of the first domain above:

const links = await shortio.link.list(domains[0].id);

Get the link statistics of the first link above:

const stats = await shortio.statistics.getByLink(links[0].idString);

Readme

Keywords

Package Sidebar

Install

npm i @short.io/client-node

Weekly Downloads

173

Version

1.0.3

License

ISC

Unpacked Size

130 kB

Total Files

34

Last publish

Collaborators

  • igor.r
  • kostenko