New Case Study:See how Anthropic automated 95% of dependency reviews with Socket.Learn More
Socket
Sign inDemoInstall
Socket

router5-plugin-browser

Package Overview
Dependencies
Maintainers
1
Versions
5
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

router5-plugin-browser

Router5 browser plugin

  • 8.0.1
  • latest
  • Source
  • npm
  • Socket score

Version published
Maintainers
1
Created
Source

Router5 browser plugin

The browser plugin will automatically update your browser URL and state on route changes. It will also listen to popstate events (triggered by back and forward buttons and manual URL changes).

Using the browser plugin

This plugin uses HTML5 history API and therefore is not compatible with browsers which don't support it. Refer to caniuse.com for browser compatibility.

It adds a bunch of functions to work with full URLs: router.buildUrl(routeName, routeParams) and router.matchUrl(url). It also decorates the start function so you don't have to supply any start path (it extracts it from the current URL).

import browserPlugin from 'router5-plugin-browser'

const router = createRouter()

router.usePlugin(
    browserPlugin({
        useHash: true
    })
)

router.start()

Plugin options

  • forceDeactivate: default to true, meaning canDeactivate handlers won't get called on popstate events. It is not recommended to set it to false.
  • useHash
  • hashPrefix
  • base: the base of your application (the part to add / preserve between your domain and your route paths).
  • preserveHash: whether to preserve the initial hash value on page load (default to true, only if useHash is false)
  • mergeState: whether to keep any value added in history state by a 3rd party or not (default to false)

Keywords

FAQs

Package last updated on 19 Mar 2020

Did you know?

Socket

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.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc