2.0.0 • Published 4 years ago

rdo v2.0.0

Weekly downloads
1
License
MIT
Repository
github
Last release
4 years ago

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.