Skip to content

Instantly share code, notes, and snippets.

@schovi
Created July 16, 2015 12:01
Show Gist options
  • Save schovi/e05193313b5cbdf6843e to your computer and use it in GitHub Desktop.
Save schovi/e05193313b5cbdf6843e to your computer and use it in GitHub Desktop.
routeState.js
import express from 'express';
const router = express.Router();
router.route('/products')
.post((req, res, next) => {
req.routeState = {
products: [
{id: 1, name: "Bike"}
]
}
});
export default router;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment