1.0.5 • Published 7 years ago

@hugohammarstrom/whereversim v1.0.5

Weekly downloads
-
License
ISC
Repository
github
Last release
7 years ago

whereversim

WhereverSim API

Installation

npm i -s @hugohammarstrom/whereversim

Example

import WhereverSim from "@hugohammarstrom/whereversim"

let API = new WhereverSim("whereversim_token")
API.authenticate()
  .then(console.log)
  .catch(console.error)

API.routes.endpoint.byId("endpoint_id")
  .then(endpoint => {
    //Do something with endpoint
  })

Skip promise rejection

Promise rejection can be skipped with the global function skipRejection()

  skipRejection(API.authenticate())
  
  skipRejection(
    API.authenticate()
      .then(console.log)
  )

WhereverSim API

1.0.5

7 years ago

1.0.4

7 years ago

1.0.3

7 years ago

1.0.2

7 years ago

1.0.1

7 years ago

1.0.0

7 years ago