0.0.1 • Published 10 years ago

express-static-resolver v0.0.1

Weekly downloads
2
License
MIT
Repository
github
Last release
10 years ago

express static content resolver.

If you have code in es6 and you don't want to babelify it for modern browsers you could use this middleware.

##Example

const resolver = createResolver({
    oldPath: express.static(path.join(__dirname, './static/old_static')),
    modernPath: express.static(path.join(__dirname, './static/new_static'))
});
app.use('/public', resolver);

So, the express app returns the static content from the oldPath in case of old browser and from the modernPath in case of modern browser