1.0.1 • Published 5 years ago

fabot_subscribe v1.0.1

Weekly downloads
1
License
MIT
Repository
-
Last release
5 years ago

usage

realtime data feed module for special use.

const fabot_subscribe = require('fabot_subscribe');

fabot_subscribe({
    target_url: 'endPointURL',
    codes: ['000020', '005930'], //stockcode array
    connectEvent: function (data) {
        console.log(data); //connection event function
    },
    messageEvent: function (data) {
        console.log(data); //message event function
    }
});