Closed Akshansh93 closed 6 years ago
Old Way of Initializing and login
Skyweb = require('skyweb'); var skyweb = new Skyweb(); skyweb.login(username, password).then(function (skypeAccount) { console.log('Skyweb is initialized now'); });
New way as shown in demo.js
Skyweb = require('skyweb'); var skyweb = new Skyweb.default(); skyweb.login(username, password).then(function (skypeAccount) { console.log('Skyweb is initialized now'); });
Check the latest commit "f10f772" from Akshansh93:patch-1 branch
Old Way of Initializing and login
New way as shown in demo.js