A fetch polyfill for sketch inspired by unfetch. It is automatically included (when needed) when using skpm.
npm i -S sketch-module-fetch
const fetch = require('sketch-module-fetch')
fetch("https://google.com")
.then(response => response.text())
.then(text => console.log(text))
.catch(e => console.error(e))
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))