Skip to content
GitHub no longer supports this web browser. Learn more about the browsers we support.

Instantly share code, notes, and snippets.

Embed
What would you like to do?
const express = require('express');
const app = express();
// Application
app.get('/', function(req, res) {
if (process.env.NODE_ENV === 'development') {
for (var key in require.cache) {
delete require.cache[key];
}
}
require('./handler')(req, res);
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
You can’t perform that action at this time.