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

@datanest-earth/nodejs-client

v0.8.3

Published

Datanest API Client to easily create signed requests

Downloads

825

Readme

Datanest API Client for Node.js

This is a Node JS implementation of datanest.earth's REST API 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.

Please see the Datanest API documentation for more information. If you need help please contact [email protected] for technical support.

Obtaining API Keys

Your Datanest Account Manager can generate API keys, from the Company Settings page, API Keys section.

API Key management section

If you cannot see the API Keys section it is possible your subscription does not include API access. Please contact us to request API access.

Requirements

If you wish to use this Node package, you will need to have Node installed on your machine. This package should work with both Bun and Deno runtime alternatives (unverified)

We recommend the latest stable version of Node.

  • Tested on Node v20.8.0
  • Fetch API is required, available in Node v18.0+ (unverified)

node-fetch may allow for earlier versions

Installation for Node projects

Install from NPM using your preferred package manager.

npm install --save @datanest-earth/nodejs-client
pnpm add @datanest-earth/nodejs-client
bun add @datanest-earth/nodejs-client

Authentication

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

Security Notice

Do not expose your API key and secret in client-side code. This package is intended for server-side use only.

Full REST API Documentation

See the Postman Documentation

Getting Started with Node.js

The client will automatically look for env variables to get the API key and secret. You can use the dotenv package to parse a .env file.

Place your API key in a .env

DATANEST_API_KEY=your-api-key
DATANEST_API_SECRET=your-api-secret

Simply instantiate DatanestClient

import DatanestClient from '@datanest-earth/nodejs-client';
import dotenv from 'dotenv';

// Load .env
dotenv.config();

const client = new DatanestClient();
import DatanestClient from '@datanest-earth/nodejs-client';

const client = new DatanestClient('your-api-key', 'your-api-secret');
const { DatanestClient, projects } = require("@datanest-earth/nodejs-client");

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

import DatanestClient from '@datanest-earth/nodejs-client';
import dotenv from 'dotenv';

// Load .env
dotenv.config();

async function listProjects() {
  const client = new DatanestClient();
    client.setClientId("Company A Version 1");
    const response = await client.get('v1/projects');
    const projects = await response.json();
    console.log(projects);
}

listProjects();

Node API Endpoints and Types

This package includes endpoints with type definitions.

Function & Type Definitions:

You can also see the TypeScript source code, this can be useful to understand the API request & responses type definitions.

import DatanestClient, { projects as projectEndpoints } from '@datanest-earth/nodejs-client';
import dotenv from 'dotenv';

// Load .env
dotenv.config();

async function listProjects() {
  const client = new DatanestClient();
  client.setClientId("Company A Version 1");
  const page = 1;
  const projects = await projectEndpoints.listProjects(client, page);
  console.log(projects);
}

listProjects();

Testing and Dedicated Hosting Endpoints

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

DATANEST_API_BASE_URL=https://app.datanest.earth/api
import DatanestClient from '@datanest-earth/nodejs-client';

const client = new DatanestClient();
client.setBaseUrl('https://app.datanest.earth/api');

Handling Errors

The client will throw a DatanestResponseError when the API returns a non-200/300 status code.

import DatanestClient, { DatanestResponseError } from '@datanest-earth/nodejs-client';

// Disable the default behavior of logging error status and response data
client.setLogErrors(false);

// With await try-catch
try {
    await client.get('v1/projects/' + projectUuid);
} catch (err) {
    if (err instanceof DatanestResponseError) {
      if (err.status === 404) {
        // Something was not found
        return;
      }
      console.error(err.message, err.data);
    }
    throw err;
}

// With callbacks
client.get('v1/projects/' + projectUuid)
  .then(response => {
    if (!response.ok) {
      throw new DatanestResponseError(response);
    }
    return response.json();
  })
  .then(data => {
    console.log(data);
  })
  .catch(err => {
    if (err instanceof DatanestResponseError) {
      if (err.status === 404) {
        // Something was not found
        return;
      }
      console.error(err.message, err.data);
    }
    throw err;
  });

Error Codes

  • 400: Bad Request
  • 401: Unauthorized, likely an invalid API key or request signature
  • 403: Forbidden
  • 404: Not Found, either the url is incorrect or UUID or ID provided does not exist
  • 405: Method Not Allowed
  • 422: Unprocessable Entity, this indicates a validation error from your request body
  • 429: Too Many Requests, you are being rate-limited
  • 500: Internal Server Error - These should not happen, please contact support there is likely an issue on our end