Skip to content

Instantly share code, notes, and snippets.

View pariola's full-sized avatar
💭
open.

Blessing Pariola pariola

💭
open.
View GitHub Profile
@pariola
pariola / index.js
Created December 23, 2018 13:16
Using the middleware pattern in now.sh
const Chain = require("middleware-chain-js");
const bodyParser = require("body-parser");
const app = new Chain();
//* parses JSON content
app.use(bodyParser.json());
app.use(function(req, res) {
console.log(req.body);
@tcnksm
tcnksm / NOTE.md
Last active April 13, 2024 21:28
Small note of gRPC Best Practice @ CoreOSFest 2017