@hugohammarstrom/whereversim

1.0.5 • Public • Published

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

/@hugohammarstrom/whereversim/

    Package Sidebar

    Install

    npm i @hugohammarstrom/whereversim

    Weekly Downloads

    8

    Version

    1.0.5

    License

    ISC

    Unpacked Size

    339 kB

    Total Files

    19

    Last publish

    Collaborators

    • hugohammarstrom