v2.0.1
Changes
- Username/password are now passed as options as a second parameter when instantiating the driver.
Previous:
const driver = new Driver('https://username:key@localhost:3000');
Now:
const driver = new Driver('https://localhost:3000', {
username: 'username',
password: 'key'
})
Updates
- Updated to use ES6 classes and syntax, and transpiled by Babel for isomorphic use
READMEhas been updated with a "Getting started" section.