Big News: Socket raises $60M Series C at a $1B valuation to secure software supply chains for AI-driven development.Announcement
Sign In

@notihub/notihub-nodejs-sdk

Package Overview
Dependencies
Maintainers
1
Versions
5
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@notihub/notihub-nodejs-sdk

Notihub Official Node.js SDK

latest
Source
npmnpm
Version
0.4.3
Version published
Maintainers
1
Created
Source

Notihub SDK for Node.js

The Notihub SDK for Node.js enables Javascript Node.js developers to easily work with the Notihub API and build scalable solutions. You can get started in minutes using npm or yarn.

Requirements

To use this SDK, you will need:

Node installation will include NPM, which is responsible for dependency management.

Getting Started

Sign up for Notihub

Before you begin, you need an Notihub account. Please go to Sign Up to Notihub and retrieve your credentials.

Install the SDK

Using npm:

npm install --save @notihub/notihub-nodejs-sdk

Import the package:

import Notihub from '@notihub/notihub-nodejs-sdk';

or

const Notihub = require('@notihub/notihub-nodejs-sdk');

Usage

This SDK relies heavily on Promises

const notihub = new Notihub({
  publicKey: '<your auth public key>',
  secretKey: '<your auth secret key>',
  environmentClientId: '<your auth environment client id>',
  environmentClientSecret: '<your auth environment client secret>'
});

Using the API

Check the guides for each endpoints

Also you can check out our API Docs to understand how our API works.

Features

  • Provides easy-to-use HTTP clients for all supported Notihub endpoints.

  • Typed Error codes for easy handling

  • Promises based SDK

  • Handle authentication and IO Async

  • And more!

Getting Help

Please use these community resources for getting help. We use GitHub issues for tracking bugs and feature requests and have limited bandwidth to address them.

  • Ask a question on StackOverflow and tag it with notihub-nodejs-sdk
  • Articulate your feature request or upvote existing ones on our Issues page
  • If it turns out that you may have found a bug, please open an issue

Contributing

Please go to Contribute section.

Keywords

notihub

FAQs

Package last updated on 16 Oct 2020

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts