0.0.1 • Published 6 years ago

fetch-logger v0.0.1

Weekly downloads
17
License
SEE LICENSE IN LI...
Repository
-
Last release
6 years ago

fetch-logger

Logger for fetch (Work with any “fetch-compatible” function). fetch logger will try by default to use the module node-fetch, but it's not a dependancy: You can use any other “fetch-compatible” function. You can specify any function compatible with fetch in first argument of your first call of fetch logger. After that, fetch logger should remember what function you already used.

Image of fetch logger

Example

NodeJS example using the module node-fetch.

const nodeFetch = require('node-fetch');
const fetch = require('fetch-logger');

fetch(nodeFetch, 'http://127.0.0.1:8000', {headers: {'X-Hello': 'world'}}).then((result) => {
	console.log('Response retrieved!');
});