Skip to content

Instantly share code, notes, and snippets.

@pre1ude
Created August 22, 2021 01:09
Show Gist options
  • Save pre1ude/51df175b20ebbd2124b572b99302aadc to your computer and use it in GitHub Desktop.
Save pre1ude/51df175b20ebbd2124b572b99302aadc to your computer and use it in GitHub Desktop.
a pattern which handle the req, res relation
const res = f =>
(req, res) =>
f(req, data => {
res.send(data)
res.end()
})
const inq = db_name =>
(req, cb) =>
io.engine(db_name, data => cb(data))
exports.menu = res(inq('menu'))
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment