npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2024 – Pkg Stats / Ryan Hefner

@webtender/api-client-node

v0.3.4

Published

WebTender API Client for signing secure REST requests to the WebTender API.

Downloads

6

Readme

WebTender API Client for Node.js

This is a Node JS implementation of WebTender's REST API HTTP Client. You should use this lightweight package to easily start using the API.

If you are NOT using Node.js you can use this package as an implementation example.

You can create your API Key and secret from the API Key Manager in the WebTender Console.

Requirements

Node / Bun or Deno is required to use this package. ES Module support only (import not require.)

We recommend the latest stable version of Node.

  • Tested on Node v20.8.0

Minimum requirements:

  • Fetch API Node v18.0+

node-fetch may allow for earlier versions

Authentication

WebTender's API uses API keys to authenticate requests along with a HMAC signature (see implementation code.) The signature may be tricky to implement, so we recommend using this package to get started.

The client will automatically look for a local .env file to get the API key and secret.

Place your API key in a .env

WEBTENDER_API_KEY=your-api-key
WEBTENDER_API_SECRET=your-api-secret

Simply construct

import WebTenderClient from '@webtender/api-client-node';
import dotenv from 'dotenv';

// Load .env
dotenv.config();

const client = new WebTenderClient();

Alternatively use the constructor to pass the API key and secret.

import WebTenderClient from '@webtender/api-client-node';

const client = new WebTenderClient('your-api-key', 'your-api-secret');

Make GET, POST, PATCH, PUT, DELETE requests

The client exposes the following methods to make requests to the API.

client.get(path, params?: Record<string, any>, optionalFetchOptions);
client.post(path, params?: Record<string, any>, optionalFetchOptions);
client.patch(path, params?: Record<string, any>, optionalFetchOptions);
client.put(path, params?: Record<string, any>, optionalFetchOptions);
client.delete(path, params?: Record<string, any>, optionalFetchOptions);

The underlying fetch api is used, you can pass in any valid fetch options as the third argument. For example, to add a custom header.

See fetch api "options" docs

Example

import WebTenderClient from '@webtender/api-client-node';
import dotenv from 'dotenv';

// Load .env
dotenv.config();

async function listServers() {
    const client = new WebTenderClient();
    const response = await client.get('v1/servers');
    const servers = await response.json();
    console.log(servers);
}

listServers();

Testing

You can override the default API endpoint by setting the WEBTENDER_API_BASE_URL environment variable.

WEBTENDER_API_BASE_URL=https://api.webtender.host/api

Or in your code:

import WebTenderClient from '@webtender/api-client-node';

const client = new WebTenderClient();
client.setBaseUrl('https://api.webtender.host/api');