Monkey-patching Express
npm install express-monkey-patch"Express is a minimal and flexible node.js web application framework, providing a robust set of features for building single and multi-page, and hybrid web applications."
However, there are some minor issues; primarily named routing is never officially going to happen, and this fixes that problem. You probably won't find this useful, but it scratches some itches for me.
The source is available for download from
GitHub.
Alternatively, you can install using Node Package Manager (npm):
npm install express-monkey-patch
``javascript
const express = require('express');
var app = express();
require('express-monkey-patch')(app);
``