# number-search-results

> Small module for retrieving number of search results for a given query from different search engines.

Latest version **1.0.1** (published 2017-10-10) · MIT license · 0 weekly downloads

## Install

```sh
npm install number-search-results
pnpm add number-search-results
yarn add number-search-results
bun add number-search-results
```

## Health

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

Positive: no vulnerabilities.

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

Negative: abandoned; low maintenance score.

## Facts

| | |
|---|---|
| Version | 1.0.1 |
| Published | 2017-10-10 |
| First published | 2017-10-10 |
| Weekly downloads | 0 |
| License | MIT |
| TypeScript types | none |
| Module format | CommonJS |
| Dependencies | 4 |
| Known vulnerabilities | 0 (+9 in 2 direct dependencies) |
| Install scripts | no |
| GitHub stars | 1 |
| Maintainers | davicente |

## Links

- npm: https://www.npmjs.com/package/number-search-results
- Repository: https://github.com/davicente/number-of-search-results
- Homepage: https://github.com/davicente/number-of-search-results#readme
- Issues: https://github.com/davicente/number-of-search-results/issues
- npm.io page: https://npm.io/package/number-search-results

## Dependencies (4)

- [cheerio](https://npm.io/package/cheerio.md) ^0.22.0
- [request](https://npm.io/package/request.md) ^2.81.0
- [sanitize-html](https://npm.io/package/sanitize-html.md) ^1.14.1
- [request-promise](https://npm.io/package/request-promise.md) ^4.2.0

## Recent versions

- 1.0.1 (latest) — 2017-10-10
- 1.0.0 — 2017-10-10

## README

# number-of-search-results
> Small module for retrieving number of search results for a given query from different search engines. It doesn't scrape the actual links.
 
## Install

Install with [npm](https://www.npmjs.com/)

```sh
$ npm install number-of-search-results --save
```

## Usage

```js

const numSearchResults = require("number-of-search-results");

const query = "javascript";  
const bing = numSearchResults.bing(query).then((numResults) => {
  //=> 190000000
});

const google = numSearchResults.google(query).then((numResults) => {
  //=> 200000000
});

````

## Running tests

Install dev dependencies:

```sh
$ npm test
```

## Contributing

Pull requests and stars are always welcome. For bugs and feature requests, [please create an issue](https://github.com/odynvolk/number-of-search-results/issues/new)

## Author

+ [github/odynvolk](https://github.com/odynvolk)

## License

Released under the MIT license.

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