0.0.3 • Published 8 years ago

legistar-client v0.0.3

Weekly downloads
1
License
ISC
Repository
-
Last release
8 years ago

legistar-client

An ES6 client for Legistar APIs.

Installation

npm install legistar-client

Usage

import LegistarClient from 'legistar-client'
const legistar = new LegistarClient('Seattle')

async function main () {
  const matters = legistar.getAllMatters() // automatically pages the API, returning more than 1000 records
  matters.length; // 1791
}
main()