Skip to content

Instantly share code, notes, and snippets.

@taylorstine
Last active March 11, 2017 14:48
Show Gist options
  • Save taylorstine/6b7018a5509b75bb86b907a1999877ad to your computer and use it in GitHub Desktop.
Save taylorstine/6b7018a5509b75bb86b907a1999877ad to your computer and use it in GitHub Desktop.
The router for the image resizer.
import express from 'express'
export const router = express.Router();
router.get('/contain/:size/:revision/:image*', validateRequest, containMiddleware);
router.get('/cover/:size/:revision/:image*', validateRequest, coverMiddleware);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment