longnow / node-panlex

node.js client for PanLex

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

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) { ... });

About

node.js client for PanLex

License:MIT License


Languages

Language:JavaScript 100.0%