@fern-api/node-sdk
TypeScript icon, indicating that this package has built-in type declarations

0.2.6 • Public • Published

Fern Node Library

npm shield fern shield

The Fern Node.js library provides access to the Fern's Public API from JavaScript/TypeScript.

Documentation

API reference documentation is available here.

Installation

npm install --save @fern-api/node-sdk
# or
yarn add @fern-api/node-sdk

Usage

import { FernClient, Fern } from "@fern-api/node-sdk";

const fern = new FernClient({
    token: "YOUR_API_KEY",
});

const snippets = await fern.snippets.get({
  endpoint: {
    method: "GET",
    path: "/api/users",
  }
});

Handling Errors

When the API returns a non-success status code (4xx or 5xx response), a subclass of FernError will be thrown:

import { FernError } from "@fern-api/assemblyai";

try {
  await fern.snippets.get(...);
} catch (err) {
  if (err instanceof FernError) {
    console.log(err.statusCode); 
    console.log(err.message);
    console.log(err.body); 
  }
}

Request Options

The HTTP Client accepts a RequestOptions class where you can specify a customized timeout.

const snippets = await fern.snippets.get(
  {
    endpoint: {
      method: "GET",
      path: "/api/users",
    }
  }, 
  {
    timeoutInSeconds: 60 // increase timeout in second
  });

Beta status

This SDK is in beta, and there may be breaking changes between versions without a major version update. Therefore, we recommend pinning the package version to a specific version in your package.json file. This way, you can install the same version each time without breaking changes unless you are intentionally looking for the latest version.

Contributing

While we value open-source contributions to this SDK, this library is generated programmatically. Additions made directly to this library would have to be moved over to our generation code, otherwise they would be overwritten upon the next generated release. Feel free to open a PR as a proof of concept, but know that we will not be able to merge it as-is. We suggest opening an issue first to discuss with us!

On the other hand, contributions to the README are always very welcome!

Readme

Keywords

none

Package Sidebar

Install

npm i @fern-api/node-sdk

Weekly Downloads

1

Version

0.2.6

License

MIT

Unpacked Size

513 kB

Total Files

619

Last publish

Collaborators

  • dsheridan
  • dsinghvi77
  • stephen-fern