0.0.3 • Published 6 years ago

@nupt/sketch-fetch v0.0.3

Weekly downloads
1
License
MIT
Repository
github
Last release
6 years ago

@nupt/sketch-fetch

A fetch polyfill for sketch inspired by unfetch. It is automatically included (when needed) when using skpm.

Installation

npm i -S @nupt/sketch-fetch

Usage

const fetch = require('@nupt/sketch-fetch')

fetch("https://google.com")
  .then(response => response.text())
  .then(text => console.log(text))
  .catch(e => console.error(e))

extra add

upload file

const fetch = require('sketch-fetch-complete')

fetch("https://google.com",{
  method: 'post',
  // filepath of local file
  formdata: path,
  // form parameters
  formParameters: {
    name: 'sample',
    author: 'wwsun',
  }
})
  .then(response => response.text())
  .then(text => console.log(text))
  .catch(e => console.error(e))