Options
All
  • Public
  • Public/Protected
  • All
Menu

rdo

Rdo Travis CI Build Status

Random.org API client library for JavaScript.

NPM Badge

Why?

  • Simple syntax.
  • Response normalisation.
  • Sensible defaults.
  • Automatic request encoding.
  • Works in Node.js and in the browser.
  • Actively Maintained.

Install

npm install rdo

Usage

const Rdo = require("rdo");

const random = new Rdo({ apiKey: "Some api key" });

random.integer({ min: 0, max: 10 }).then(console.log);
// 6

API

See the documentation.

Generated using TypeDoc