fetch-logger
v0.0.1
Published
Logger for fetch (Work with any “fetch-compatible” function).
Downloads
32
Readme
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.
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!');
});