1.0.0 • Published 9 years ago

rmv-wait-times v1.0.0

Weekly downloads
2
License
MIT
Repository
github
Last release
9 years ago

RMV Wait Times

A simple node module to get Massachusetts RMV wait times.

Install

npm install rmv-wait-times

Usage

var waitTimes = require('rmv-wait-times');

waitTimes(function (err, result) {
  console.dir(result);
  /*
   [
     {
       town: 'Attleboro',
       licensing: '00:54:30',
       registration: '00:36:58'
     },
     {
       town: 'Boston',
       licensing: '01:20:00',
       registration: '02:29:48'
     },
     ...
   ]
  */
});

Testing

npm test