# isitforme

> Advanced route parser, uses an highly performant Tree route structure algorithms.

Latest version **0.0.5** (published 2018-01-19) · MIT license · 0 weekly downloads

## Install

```sh
npm install isitforme
pnpm add isitforme
yarn add isitforme
bun add isitforme
```

## Health

**Score 15/100 (F)** — status: abandoned.

Positive: no vulnerabilities.

Warnings: low downloads; no types; no esm support; pre 1.0.

Negative: abandoned; low maintenance score.

## Facts

| | |
|---|---|
| Version | 0.0.5 |
| Published | 2018-01-19 |
| First published | 2017-10-20 |
| Weekly downloads | 0 |
| License | MIT |
| TypeScript types | none |
| Module format | CommonJS |
| Dependencies | 1 |
| Known vulnerabilities | 0 |
| Install scripts | no |
| GitHub stars | 1 |
| Author | Benoît Claveau |
| Maintainers | benoit.claveau |
| Keywords | http, https, qwebs, route, tree, algorithm, performant, advanced, webserver |

## Links

- npm: https://www.npmjs.com/package/isitforme
- Repository: https://github.com/BenoitClaveau/isitforme
- Issues: https://github.com/BenoitClaveau/isitforme/issues
- npm.io page: https://npm.io/package/isitforme

## Dependencies (1)

- [oups](https://npm.io/package/oups.md) latest

## Alternatives

- [express-promise-router](https://npm.io/package/express-promise-router.md) — 736.1K weekly downloads
- [next-usequerystate](https://npm.io/package/next-usequerystate.md) — 29.8K weekly downloads
- [@bitkyc08/opencodex](https://npm.io/package/@bitkyc08/opencodex.md) — 4.6K weekly downloads
- [lynkr](https://npm.io/package/lynkr.md) — 575 weekly downloads
- [baremetal.js](https://npm.io/package/baremetal.js.md) — 42 weekly downloads

## Recent versions

- 0.0.5 (latest) — 2018-01-19
- 0.0.4 — 2017-11-27
- 0.0.3 — 2017-11-09
- 0.0.2 — 2017-11-03
- 0.0.1 — 2017-10-20

## README

# isitforme
Advanced router, uses an highly performant Tree route structure algorithms.

 [![NPM][npm-image]][npm-url]
 [![Build Status][travis-image]][travis-url]
 [![Coverage Status][coveralls-image]][coveralls-url]
 [![NPM Download][npm-image-download]][npm-url]
 [![Dependencies Status][david-dm-image]][david-dm-url]

## What is this?

The "tree" defines a series of hierarchical nodes with children to optimise the search method.

For example, the routes:

```
/api/users
/api/user/:id
/api/user/:id/tasks
/api/user/:id/validate
```

defines a tree that looks like

```
               api
             /     \
          users    user
                 /     \
             validate  :id
                      /    \   
                validate   tasks
```

## Installation

```shell
npm install isitforme --save
```

## Test

To run our tests, clone the isitforme repo and install the dependencies.

```bash
$ git clone https://github.com/BenoitClaveau/isitforme --depth 1
$ cd isitforme
$ npm install
$ cd tests
$ node.exe "../node_modules/mocha/bin/mocha" .
```

[npm-image]: https://img.shields.io/npm/v/isitforme.svg
[npm-image-download]: https://img.shields.io/npm/dm/isitforme.svg
[npm-url]: https://npmjs.org/package/isitforme
[travis-image]: https://travis-ci.org/BenoitClaveau/isitforme.svg?branch=master
[travis-url]: https://travis-ci.org/BenoitClaveau/isitforme
[coveralls-image]: https://coveralls.io/repos/BenoitClaveau/isitforme/badge.svg?branch=master&service=github
[coveralls-url]: https://coveralls.io/github/BenoitClaveau/isitforme?branch=master
[david-dm-image]: https://david-dm.org/BenoitClaveau/isitforme/status.svg
[david-dm-url]: https://david-dm.org/BenoitClaveau/isitforme

---
_Source: https://npm.io/package/isitforme · Machine-readable twin of the npm.io package page. Health data is recomputed on every publish._
