Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/npm/cli.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'node_modules/libnpmsearch/README.md')
-rw-r--r--node_modules/libnpmsearch/README.md26
1 files changed, 15 insertions, 11 deletions
diff --git a/node_modules/libnpmsearch/README.md b/node_modules/libnpmsearch/README.md
index a83988cc2..31f44fe24 100644
--- a/node_modules/libnpmsearch/README.md
+++ b/node_modules/libnpmsearch/README.md
@@ -1,9 +1,23 @@
-# libnpmsearch [![npm version](https://img.shields.io/npm/v/libnpmsearch.svg)](https://npm.im/libnpmsearch) [![license](https://img.shields.io/npm/l/libnpmsearch.svg)](https://npm.im/libnpmsearch) [![Travis](https://img.shields.io/travis/npm/libnpmsearch.svg)](https://travis-ci.org/npm/libnpmsearch) [![AppVeyor](https://ci.appveyor.com/api/projects/status/github/zkat/libnpmsearch?svg=true)](https://ci.appveyor.com/project/zkat/libnpmsearch) [![Coverage Status](https://coveralls.io/repos/github/npm/libnpmsearch/badge.svg?branch=latest)](https://coveralls.io/github/npm/libnpmsearch?branch=latest)
+# libnpmsearch
+
+[![npm version](https://img.shields.io/npm/v/libnpmsearch.svg)](https://npm.im/libnpmsearch)
+[![license](https://img.shields.io/npm/l/libnpmsearch.svg)](https://npm.im/libnpmsearch)
+[![Coverage Status](https://coveralls.io/repos/github/npm/libnpmsearch/badge.svg?branch=latest)](https://coveralls.io/github/npm/libnpmsearch?branch=latest)
[`libnpmsearch`](https://github.com/npm/libnpmsearch) is a Node.js library for
programmatically accessing the npm search endpoint. It does **not** support
legacy search through `/-/all`.
+## Table of Contents
+
+* [Example](#example)
+* [Install](#install)
+* [Contributing](#contributing)
+* [API](#api)
+ * [search opts](#opts)
+ * [`search()`](#search)
+ * [`search.stream()`](#search-stream)
+
## Example
```js
@@ -30,15 +44,6 @@ console.log(await search('libnpm'))
`$ npm install libnpmsearch`
-## Table of Contents
-
-* [Example](#example)
-* [Install](#install)
-* [API](#api)
- * [search opts](#opts)
- * [`search()`](#search)
- * [`search.stream()`](#search-stream)
-
### API
#### <a name="opts"></a> `opts` for `libnpmsearch` commands
@@ -62,7 +67,6 @@ for options that can be passed in.
A couple of options of note for those in a hurry:
* `opts.token` - can be passed in and will be used as the authentication token for the registry. For other ways to pass in auth details, see the n-r-f docs.
-* `opts.Promise` - If you pass this in, the Promises returned by `libnpmsearch` commands will use this Promise class instead. For example: `{Promise: require('bluebird')}`
#### <a name="search"></a> `> search(query, [opts]) -> Promise`