0.1.1 • Published 7 years ago

now-fetch v0.1.1

Weekly downloads
5
License
MIT
Repository
-
Last release
7 years ago

now-fetch

A bare-bones fetch wrapper for the Now API that:

  • Sets the base URL for requests to https://api.zeit.co, or the url option
  • Lazily finds your Now authentication token with now-token and automatically sets the Authorization header

Installation

npm install --save now-fetch

Usage

The default export of now-fetch is a function that configures the fetch() wrapper with options:

const makeNowFetch = require('now-fetch')
const nowFetch = makeNowFetch()
// or, more succinctly:
const nowFetch = require('now-fetch')()

nowFetch('/v2/now/deployments')
  .then(data => {
    console.warn('You have %d deployments.', data.deployments.length)
  })
  .catch(error => {
    console.error('Oops:', error)
    process.exitCode = 1
  })

Fetch wrapper options

OptionDescriptionDefault
tokenProvides the Now access token(use now-token)
tokenOptionsIf no token is provided, pass these options to now-token
urlSet the request base URLhttps://api.zeit.co

Fetch options

See the node-fetch docs for which options you can pass to the configured fetch() function.