Hopefully highlighted in bold...
What problem does it solve?
This plugin model translates well between the browser and the server because developers can write different plugins to suite > suit the needs of the different environments.
function middleware1(req, res) {
if(~req.url.indexOf('foo')) {
return false;
}
}
What's that before the req?
Hopefully highlighted in bold...
What problem does it solve?
This plugin model translates well between the browser and the server because developers can write different plugins to suite > suit the needs of the different environments.
What's that before the req?