universal-router
universal-router copied to clipboard
A simple middleware-style router for isomorphic JavaScript web apps
How do you handle page reload when using Universal Router on the client side? I'm not having any luck. If I use some routes, then reload the page, the server...
I am having hard time to figure out how to setup a full working `react` app. Are there any examples out there? --- Want to back this issue? **[Post a...
Hello, guys! Your router looks great on a slides and simple in docs. Actually, too simple. It promos like 'isomorphic', but I can't find how to work with HTML5 History...
--- Want to back this issue? **[Post a bounty on it!](https://www.bountysource.com/issues/45998537-how-to-implement-onleave-logic-with-this-router?utm_campaign=plugin&utm_content=tracker%2F18115217&utm_medium=issues&utm_source=github)** We accept bounties via [Bountysource](https://www.bountysource.com/?utm_campaign=plugin&utm_content=tracker%2F18115217&utm_medium=issues&utm_source=github).
because webpack will bundle all page .js together, but not every page have to all the things. so. can you provide a webpack plugin to do this. thx --- Want...
does it support anchor? just like click on tag: `jump`, the page scroll to the position of the tag: `position1` --- Want to back this issue? **[Post a bounty on...
Transitions
Provide a mechanism to do smooth animated transitions to a different route. Consider also the same route with different parameters. Ex: `/user/123` to`/user/124`. Ideally it can work with `ReactCSSTransitionGroup` ##...
``` // Let's say we have these 2 routes: // `/home/:myValueA` route async action(args) { args.context.store.dispatch({type: 'onRouteEnter', params: args.params});// or return ( ); }, // `/other/:myValueB` route async action(args) {...
Hi koistya, I'm newbie in React JS, I'm using [SB Admin React Starter Kit to create my app](https://github.com/start-react/sb-admin-react/blob/master/src/routes/index.js), I wish to create kind REST routes : http://example.com/users http://example.com/users/1 http://example.com/users/create http://example.com/users/add...
For example i have route "/search" and 100 parameters in app logic, how to pass this in "state"? Just for process routes like: ``` /search?form[a]=1&form[b]=1&form[c]=4 ``` ## Want to back...