# aniscrape-animebam-https

> Animebam scraping module for aniscrape using HTTPS.

Latest version **0.1.4** (published 2017-12-29) · MIT license · 0 weekly downloads

## Install

```sh
npm install aniscrape-animebam-https
pnpm add aniscrape-animebam-https
yarn add aniscrape-animebam-https
bun add aniscrape-animebam-https
```

## 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.1.4 |
| Published | 2017-12-29 |
| First published | 2017-12-29 |
| Weekly downloads | 0 |
| License | MIT |
| TypeScript types | none |
| Module format | CommonJS |
| Dependencies | 4 |
| Known vulnerabilities | 0 |
| Install scripts | no |
| Author | nathanie1 |
| Maintainers | nathanie1 |
| Keywords | aniscrape |

## Links

- npm: https://www.npmjs.com/package/aniscrape-animebam-https
- npm.io page: https://npm.io/package/aniscrape-animebam-https

## Dependencies (4)

- [lodash](https://npm.io/package/lodash.md) ^4.11.2
- [needle](https://npm.io/package/needle.md) ^0.11.0
- [cheerio](https://npm.io/package/cheerio.md) ^0.19.0
- [bluebird](https://npm.io/package/bluebird.md) ^3.5.1

## Recent versions

- 0.1.4 (latest) — 2017-12-29
- 0.1.3 — 2017-12-29

## README

# aniscrape-animebam

aniscrape-animebam is a provider for the [aniscrape](https://github.com/roflmuffin/aniscrape) node module.
This slight edit uses https for it's requests.

```js
var Aniscrape = require('aniscrape'); // Check source on GitHub for more info.
var animebam = require('aniscrape-animebam');

var scraper = new Aniscrape();
scraper.use(animebam)
.then(function() {
  scraper.search('Haikyuu', 'animebam').then(function (results) {
    console.log(results)
    scraper.fetchSeries(results[0]).then(function(anime) {
      console.log(anime)
      scraper.fetchVideo(anime.episodes[1]).then(function(video) {
        // Video is a list of direct video links and quality labels.
        console.log(video)
      })
    })
  })
})
```

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