An open API service indexing awesome lists of open source software.

https://github.com/nx-js/route-middleware

An NX middleware, responsible for path routing.
https://github.com/nx-js/route-middleware

Last synced: about 1 month ago
JSON representation

An NX middleware, responsible for path routing.

Awesome Lists containing this project

README

          

# The route middleware

The `route` middleware is responsible for client-side routing.

- name: route
- direct middleware dependencies: none
- all middleware dependencies: none
- type: component middleware
- [docs](http://nx-framework.com/docs/middlewares/route)

## Installation

`npm install @nx-js/route-middleware`

## Usage

```js
const component = require('@nx-js/core')
const route = require('@nx-js/route-middleware')

component()
.use(route)
.register('router-comp')
```

```html


```