1.0.1 • Published 3 years ago

electron-net-fetch v1.0.1

Weekly downloads
-
License
MIT
Repository
-
Last release
3 years ago

electron-net-fetch

A light-weight module by Electron's net module for get http/https data

Installation

npm install gulp-less

Basic Usage

import fetch from 'electron-net-fetch'
fetch.get(url, params, header)
  .then(data => {
    console.log(data)
  })
  .catch(e => {
    console.log('error', e)
  })

fetch.post(url, params, header)
  .then(data => {
    console.log(data)
  })
  .catch(e => {
    console.log('error', e)
  })