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

https://github.com/paul-go/rawter

A router designed for use with RawJS apps
https://github.com/paul-go/rawter

Last synced: 19 days ago
JSON representation

A router designed for use with RawJS apps

Awesome Lists containing this project

README

        

# Rawter

A hierarchial router for RawJS projects.

## Installation (Modules)

```
npm install rawter --save
```

## Installation (No modules)

```html

```

To get TypeScript typings, first do an npm install:

```
npm install rawter --save-dev
```

Then add the typings to the `include` section of your tsconfig.json file:
```json
{
"compilerOptions": {

},
"include": [
"node_modules/rawter/*.ts"
]
}
```

## Usage

For a complete example, see the Rawter.cover.ts file in the repository.