Skip to content

v2.0.1

Choose a tag to compare

@nwinch nwinch released this 17 May 08:00
· 15 commits to master since this release

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
  • README has been updated with a "Getting started" section.