1.0.2 • Published 7 years ago

match-middleware v1.0.2

Weekly downloads
5
License
MIT
Repository
github
Last release
7 years ago

match-middleware

An express middleware for working with React Router.

How to use it...

import match from "match-middleware";
import { renderToString } from "react-dom/server";
import { RouterContext } from "react-router";
import routes from "./routes";

router.get("/foo", match(routes), (req, res, next) => {
  res.send(renderToString(<RouterContext {...req.props} />));
});

Run the tests...

npm run test
npm run test:ci # Watch mode