0.0.3 • Published 2 years ago

@garyblackwood/roboflow.js v0.0.3

Weekly downloads
-
License
MIT
Repository
github
Last release
2 years ago

Roboflow.js

A JavaScript package for the Roboflow API.

API Key

Read the Roboflow documentation on instructions for obtaining an API key.

Usage

Install:

npm install --save @garyblackwood/roboflow.js

Use:

import { RoboflowClient } from "@garyblackwood/roboflow.js";

const roboflow = new RoboflowClient(process.env.ROBOFLOW_API_KEY);

const project = roboflow.workspace("<workspaceName>", "<projectName>");
console.log(project);

Development Quick Start

Install dependencies:

npm install

Build:

npm run build

Run unit tests:

# Populate `ROBOFLOW_API_KEY` in `.env.example` and rename the file to `.env`.
npm run test

Lint the code:

npm run lint