Package Exports
- neutrino-api-client-node
- neutrino-api-client-node/src/client/neutrino-api-client.js
This package does not declare an exports field, so the exports above have been automatically detected and optimized by JSPM instead. If any package subpath is missing, it is recommended to post an issue to the original package (neutrino-api-client-node) to support the "exports" field. If that is not possible, create a JSPM override to customize the exports field for this package.
Readme
NeutrinoAPI Node Native SDK
Neutrino API Node.js client using the native HTTP library
The official API client and SDK built by NeutrinoAPI
| Feature | |
|---|---|
| Platform Version | >= 10 |
| HTTP Library | Native |
| JSON Library | Native |
| HTTP/2 | No |
| HTTP/3 | No |
| CodeGen Version | 4.7.1 |
Getting started
First you will need a user ID and API key pair: SignUp
To Initialize
const neutrinoAPI = new NeutrinoAPIClient('<your-user-id>', '<your-api-key');Running Examples
$ node src/examples/bad-word-filter.jsYou can find examples of all APIs in src/examples/
Set the 'your-user-id' and 'your-api-key' values in the example to retrieve real API responses
Install using NPM
$ npm install neutrino-api-client-nodeThen include the package in your project:
const NeutrinoAPIClient = require("neutrino-api-client-node");