# @lyo/franxx

A browser-compatible version of [franxx](https://www.npmjs.com/package/franxx) built automatically with [Lyo](https://github.com/bokub/lyo).

[![Version](https://flat.badgen.net/npm/v/@lyo/franxx)](https://www.npmjs.com/package/@lyo/franxx)
[![Build](https://bokub.github.io/lyo/badge-flat.svg)](https://www.npmjs.com/package/@lyo/franxx)
[![Hits](https://data.jsdelivr.com/v1/package/npm/@lyo/franxx/badge)](https://www.jsdelivr.com/package/npm/@lyo/franxx)

## Usage

#### In a browser
```html
<script src="https://cdn.jsdelivr.net/npm/@lyo/franxx"></script>

<script>
  franxx.Router(foo);
  franxx.createBrowserRouter(foo);
  franxx.createHashRouter(foo);
  franxx.createMemoryRouter();
</script>
```

#### In Node.js

```sh
# Install
npm i @lyo/franxx
```

```js
const franxx = require('@lyo/franxx')

franxx.Router(foo);
franxx.createBrowserRouter(foo);
franxx.createHashRouter(foo);
franxx.createMemoryRouter();
```

## Disclaimer

This automated Lyo build may have not been properly tested, and is not guaranteed to work perfectly.

Use at your own risk