0.1.4 • Published 11 years ago

rtp-live-pass v0.1.4

Weekly downloads
5
License
-
Repository
github
Last release
11 years ago

RTP LivePass data retrieval for Node

Retrieve scan data from an RTP LivePass based season pass account.

Currently only supports Park City Mountain Resort.

Install

$ npm install rtp-live-pass

Example Usage

var LivePassUser = require("./index"),
	async = require("async");

var user = new LivePassUser();

async.waterfall([
	function (callback) {
		user.authenticate("email@example.com", "password", function(err, accessCode) {
			callback(err, accessCode);
		});
	},
	function (accessCode, callback) {
		user.getScanHistory(function(err, history) {
			callback(err, history);
		});
	}
], function (err, result) {
	console.log(err);
	console.log(result);
});
0.1.4

11 years ago

0.1.3

11 years ago

0.1.2

11 years ago

0.1.1

11 years ago

0.0.5

11 years ago

0.0.4

11 years ago

0.0.3

11 years ago

0.0.2

11 years ago

0.0.1

11 years ago