0.1.4 • Published 9 years ago

chepiao-sdk v0.1.4

Weekly downloads
15
License
-
Repository
github
Last release
9 years ago

node-chepiao-sdk

NPM version David deps

NPM

Node.js SDK for chepiao100.com.

Install

npm install chepiao-sdk --save

Usage

  1. Register and get your userid and seckey: chepiao100.com
  2. Initialize the SDK

    var Chepiao = require('chepiao-sdk');
    var chepiao = new Chepiao({
        userid: 'your userid',
        seckey: 'your secret key'
    });
  3. Use the API

    chepiao.schedule('g1', function (res) {
        // do stuff with the response
    });

API

  • Train schedule
chepiao.schedule(number, callback);
  • Query train tickets
chepiao.leftTickets(date, startStation, arriveStation, callback);
  • Query flight tickets
chepiao.flights(date, depart, arrival, callback);

License

The MIT License