# crossref-metadata-scraper

> Gets crossref metadata in batch

Latest version **1.0.0** (published 2016-02-25) · BSD-2-Clause license · 0 weekly downloads

## Install

```sh
npm install crossref-metadata-scraper
pnpm add crossref-metadata-scraper
yarn add crossref-metadata-scraper
bun add crossref-metadata-scraper
```

Provides the command `crossref-metadata-scraper`.

## 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.0 |
| Published | 2016-02-25 |
| First published | 2016-02-25 |
| Weekly downloads | 0 |
| License | BSD-2-Clause |
| TypeScript types | none |
| Module format | CommonJS |
| Dependencies | 3 |
| Known vulnerabilities | 0 |
| Install scripts | no |
| GitHub stars | 5 |
| Author | Karissa McKelvey |
| Maintainers | karissa |

## Links

- npm: https://www.npmjs.com/package/crossref-metadata-scraper
- Repository: https://github.com/karissa/crossref-metadata-scraper
- Homepage: https://github.com/karissa/crossref-metadata-scraper#readme
- Issues: https://github.com/karissa/crossref-metadata-scraper/issues
- npm.io page: https://npm.io/package/crossref-metadata-scraper

## Dependencies (3)

- [minimist](https://npm.io/package/minimist.md) ^1.2.0
- [querystring](https://npm.io/package/querystring.md) ^0.2.0
- [paged-http-stream](https://npm.io/package/paged-http-stream.md) ^1.0.1

## Recent versions

- 1.0.0 (latest) — 2016-02-25

## README

# crossref-metadata-scraper

Scrape crossref metadata.

[![NPM](https://nodei.co/npm/crossref-metadata-scraper.png)](https://nodei.co/npm/crossref-metadata-scraper/)

## CLI Example

```
crossref-metadata-scraper --rows=5 --offset=25 --limit=500
```

## Options

* `rows`: number of rows per page
* `offset`: the row number to start returning results
* `limit`: the total number of rows before stopping
* `raw`: will output the raw crossref data instead of bibjson

## JS

```
var scraper = require('crossref-metadata-scraper')
var opts = {
  offset: 5,
  limit: 1000,
  rows: 200
}
var readStream = scraper(opts)
readStream.on('data', function (page) {
  // a page of crossref results
  console.log(page)
})
```

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