chepiao-sdk

Node.js SDK for chepiao100.com

Usage no npm install needed!

<script type="module">
  import chepiaoSdk from 'https://cdn.skypack.dev/chepiao-sdk';
</script>

README

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