# simple-search-parser

> Simple text search parser

Latest version **0.0.0** (published 2016-11-20) · MIT license · 0 weekly downloads

## Install

```sh
npm install simple-search-parser
pnpm add simple-search-parser
yarn add simple-search-parser
bun add simple-search-parser
```

## 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.0 |
| Published | 2016-11-20 |
| First published | 2016-11-20 |
| Weekly downloads | 0 |
| License | MIT |
| TypeScript types | none |
| Module format | CommonJS |
| Dependencies | 0 |
| Known vulnerabilities | 0 |
| Install scripts | no |
| GitHub stars | 0 |
| Author | Lucas Azzola |
| Maintainers | derflatulator |
| Keywords | text, parser, search |

## Links

- npm: https://www.npmjs.com/package/simple-search-parser
- Repository: https://github.com/DerFlatulator/simple-search-parser
- Homepage: https://github.com/DerFlatulator/simple-search-parser#readme
- Issues: https://github.com/DerFlatulator/simple-search-parser/issues
- npm.io page: https://npm.io/package/simple-search-parser

## Alternatives

- [babylon](https://npm.io/package/babylon.md) — 5.1M weekly downloads
- [csscolorparser](https://npm.io/package/csscolorparser.md) — 3.7M weekly downloads
- [expr-eval-fork](https://npm.io/package/expr-eval-fork.md) — 1.5M weekly downloads
- [@leeoniya/ufuzzy](https://npm.io/package/@leeoniya/ufuzzy.md) — 247.7K weekly downloads
- [xml-parser](https://npm.io/package/xml-parser.md) — 78.4K weekly downloads

## Recent versions

- 0.0.0 (latest) — 2016-11-20

## README

# simple search parser

Parses expressions like:

* "Cars or Boats"
* "Donald and not Trump"
* "Snakes and Planes"
* "Cars or Boats and not Snakes"

And returns a function that matches strings on the given expression.

## install

```bash
npm install simple-search-parser
```

## usage

```js
const parse = require('simple-search-parser');

const match = parse('Cars or Boats');

match('I like cars!'); // ==> true
```

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