
Product
A New Overview in our Dashboard
We redesigned Socket's first logged-in page to display rich and insightful visualizations about your repositories protected against supply chain threats.
mobx-little-router
Advanced tools
Implementation of an universal router that uses MobX to manage state.
This package provides the core functionality of the MobX little router.
Import the install
function from package, along with your chosen history creator from history
package.
import { install } from 'mobx-little-router'
import { createMemoryHistory } from 'history'
const ROUTES = [{ path: ':whatever' }]
const router = install({
history: createMemoryHistory(),
routes: ROUTES
})
Then run router.start(...)
which takes in a callback when initialization finishes.
import { autorun } from 'mobx'
router.start(() => {
autorun(() => console.log(`path = ${router.store.location.pathname}`))
router.push('/a') // Prints "path = /a/"
router.push('/b') // Prints "path = /b/"
router.push('/c') // Prints "path = /c/"
router.push('/not/found') // Navigation aborts since path cannot be matched from config.
})
The install
function takes the following options:
history
- The history object created from history
.
getContext
- A function that returns a context object that is accessible from each route. This is useful for
sharing MobX stores or other injectable objects.
middleware
- Custom router middleware for your application.
routes
- A list of initial route configuration of type Config[]
, where
type Config = {
path: string,
// Static child routes.
children?: Config[],
// Dynamic child routes
loadChildren?: () => Promise<Config[]>,
// Guard functions that can block a route from activating or deactivating.
canActivate?: (route: Route<*, *>) => boolean | Promise<void>,
canDeactivate?: (route: Route<*, *>) => boolean | Promise<void>,
// Called for each activation or query/param changes to the route.
// Used for resolving effects.
willResolve?: (route: Route<*, *>) => Promise<void>,
onTransition?: (evt: TransitionEvent) => Promise<void>
}
For more type information, check out the routing/types.js
file.
FAQs
Implementation of an universal router that uses MobX to manage state.
We found that mobx-little-router demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 2 open source maintainers collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Product
We redesigned Socket's first logged-in page to display rich and insightful visualizations about your repositories protected against supply chain threats.
Product
Automatically fix and test dependency updates with socket fix—a new CLI tool that turns CVE alerts into safe, automated upgrades.
Security News
CISA denies CVE funding issues amid backlash over a new CVE foundation formed by board members, raising concerns about transparency and program governance.