Skip to content

Latest commit

 

History

History
20 lines (13 loc) · 607 Bytes

README.md

File metadata and controls

20 lines (13 loc) · 607 Bytes

This module provides convenience methods to access the PanLex API.

var panlex = require('panlex');

// use API v1 endpoint (default is v2)
panlex.version(1);

// set User-Agent header with app name and version
panlex.setUserAgent('My application', '0.0.3');

// turn off built-in rate limiting (careful!)
panlex.limit = false;

Callback style:

// do a single request
panlex.query('/langvar', {}, function (err, data) { ... });

// loop until all results are received
panlex.queryAll('/langvar', {}, function (err, data) { ... });