Socket
Socket
Sign inDemoInstall

@nrfcloud/api-client-javascript

Package Overview
Dependencies
Maintainers
1
Versions
10
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@nrfcloud/api-client-javascript

JavaScript API client for the nRFCloud.com REST API


Version published
Weekly downloads
3
Maintainers
1
Weekly downloads
 
Created
Source

nRF Cloud JavaScript API Client

npm preview version Greenkeeper badge semantic-release Commitizen friendly Build Status Greenkeeper badge

Provides the JavaScript API client for the nRFCloud.com REST API.

:warning: This is a preview release and might be changed without notice.

API Client

The API client is available on npm:

npm i @nrfcloud/api-client-javascript

Browser

const {Client} = require('@nrfcloud/api-client-javascript')

const client = new Client(token);
client
  .registerGateway('foo')
  .then(res => {
      console.log(res)
  })

Node.js

npm i isomorphic-fetch es6-promise
require('es6-promise').polyfill();
require('isomorphic-fetch');

const {Client} = require('@nrfcloud/api-client-javascript')

...

Keywords

FAQs

Package last updated on 24 Jan 2018

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

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc