Skip to content

Node.js API client for Porkbun, written in TypeScript

Notifications You must be signed in to change notification settings

neuraljets/porkbun-api-node

Repository files navigation

porkbun-api-node

Node.js client for the Porkbun API, written in TypeScript.

Installation

This package is not yet published to npm. To install it, you can install it directly from GitHub:

npm install --save neuraljets/porkbun-api-node

Or you can clone the repository and install it from the local directory (assumed here to be ../porkbun-api-node):

npm install --save ../porkbun-api-node

Usage

import { PorkbunAPI } from "porkbun-api-node";

const porkbun = new PorkbunAPI({
  apiKey: "your-api-key",
  secretApiKey: "your-secret-api-key",
});

porkbun.listDomains().then(({ domains }) => {
  console.log(domains);
});

About

Node.js API client for Porkbun, written in TypeScript

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published