datarobot

0.0.1 • Public • Published

DataRobot NodeJS Client

A JavaScript implementation for working with the DataRobot platform API.

Install

npm install datarobot

Usage

// datarobot-client.js
import { DataRobotClient } from 'datarobot';
 
// XXX: make sure you don't hardcode your token
const API_TOKEN = process.env.DATAROBOT_API_TOKEN;
const DR_ENDPOINT = process.env.DATAROBOT_ENDPOINT;
export default new DataRobotClient(DR_ENDPOINT, API_TOKEN);
// index.js
import datarobot from './datarobot-client';
 
datarobot.projects.retrieve().then(projects => {
  console.log(projects);
});

Readme

Keywords

Package Sidebar

Install

npm i datarobot

Weekly Downloads

1

Version

0.0.1

License

MIT

Last publish

Collaborators

  • alexeyraspopov