@workablehr/riviere
Version:
log inbound/outbound HTTP traffic
35 lines (29 loc) • 696 B
JavaScript
const Koa = require('koa');
const riviere = require('../index');
const app = new Koa();
app.use(
riviere({
outbound: {
https: true
},
bodyKeys: ['title', 'userId'],
styles: ['simple', 'json']
})
);
app.use(async function(ctx) {
await fetch('https://jsonplaceholder.typicode.com/posts/1', {
method: 'PUT',
headers: {
'Content-Type': 'application/json; charset=UTF-8',
'x-riviere-id': ctx.request.headers['x-riviere-id'] // Please note header keys are lowercased
},
body: JSON.stringify({
id: 1,
title: 'foooooooo',
body: 'baraaaaaaaaa',
userId: 134
})
});
ctx.body = 'Hello World';
});
app.listen(3000);