franxx

A vanilla JavaScript router that works everywhere.

MIT License

Downloads
22
Stars
324
Committers
3

Bot releases are hidden (Show)

franxx - v2.0.1 Latest Release

Published by egoist almost 3 years ago

Breaking changes:

  • Make history a peer dependency:

    import { createRouter } from 'franxx'
    import { createBrowserHistory } from 'history'
    
    const router = createRouter({
      history: createBrowserHistory(),
    })
    
  • Removed IIFE and UMD bundles, use ESM instead.

franxx - v1.2.1

Published by egoist almost 5 years ago

1.2.1 (2020-01-17)

Bug Fixes

franxx - v1.2.0

Published by egoist almost 5 years ago

1.2.0 (2020-01-17)

Features

  • add router.beforeEach hook (7056578)