0.0.1 • Published 8 years ago

ml-http2 v0.0.1

Weekly downloads
-
License
ISC
Repository
-
Last release
8 years ago

ml-http2

API

__http2({
  url:    //string
}, function(data) {
  // callback function
});

Example

__wifi({
  mode: 'station', // default is station
  auth: 'PSK_WPA2',
  ssid: 'mcs',
  password: 'mcs12345678',
});

global.eventStatus.on('wifiConnect', function() {
  __http2({url: 'https://http2.akamai.com/'}, function(data){
    print(data);
  });
});