Socket
Socket
Sign inDemoInstall

autofetch

Package Overview
Dependencies
Maintainers
1
Versions
59
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

autofetch

fetch for node


Version published
Weekly downloads
2
decreased by-66.67%
Maintainers
1
Weekly downloads
 
Created
Source

autoFetch

npm

fetch api with customer auto pre actions

Installation

$ npm install autoFetch

Why Not isomorphic-fetch

  • More api for node env
    • Headers.keys
    • Headers.values
  • global baseHost,callback,headers,queries and url params

Usage

require('autoFetch');

fetch.baseHost('http://domain.com');

fetch('//path'); // http://domain.com/path;

fetch.baseHost((url)=>{
  return url += '/path';
})

fetch('//path'); // http://domain.com/path;

fetch('//user/:id',{ params: { id: 123 } }); // http://domain.com/user/123

fetch.callback((response)=>{
  console.log(response);
  return response;
});

Contribution

PR and issue welcome

Keywords

FAQs

Package last updated on 16 Aug 2017

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc