# bimmerscraper

> Scrapes production order status from the BMW My Garage website.

Latest version **1.1.0** (published 2018-09-13) · MIT license · 0 weekly downloads

## Install

```sh
npm install bimmerscraper
pnpm add bimmerscraper
yarn add bimmerscraper
bun add bimmerscraper
```

## 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.1.0 |
| Published | 2018-09-13 |
| First published | 2018-09-05 |
| Weekly downloads | 0 |
| License | MIT |
| TypeScript types | none |
| Module format | CommonJS |
| Dependencies | 1 |
| Unpacked size | 2.3 KB |
| Known vulnerabilities | 0 |
| Install scripts | no |
| Author | Jeff Fredrickson |
| Maintainers | jfredrickson |

## Links

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

## Dependencies (1)

- [puppeteer](https://npm.io/package/puppeteer.md) ^1.7.0

## Recent versions

- 1.1.0 (latest) — 2018-09-13
- 1.0.2 — 2018-09-05
- 1.0.1 — 2018-09-05

## README

# bimmerscraper

Node module that scrapes your latest production order status.

## Usage

This module provides just one method:

`bimmerscraper.check(username, password)`

* `username`: My Garage username
* `password`: My Garage password

### Example

```javascript
const bimmerscraper = require("bimmerscraper")

bimmerscraper
  .check("driver@example.com", "abc123")
  .then((vehicles) => {
    vehicles.forEach((vehicle) => {
      console.log("Status code: " + vehicle.orderStatusCode)
    })
  })
```

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