# supreme-community-api-menox

> Requests latest droplist from SupremeCommunity

Latest version **3.0.0** (published 2020-07-06) · MIT license · 0 weekly downloads

## Install

```sh
npm install supreme-community-api-menox
pnpm add supreme-community-api-menox
yarn add supreme-community-api-menox
bun add supreme-community-api-menox
```

## 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 | 3.0.0 |
| Published | 2020-07-06 |
| First published | 2020-07-06 |
| Weekly downloads | 0 |
| License | MIT |
| TypeScript types | none |
| Module format | CommonJS |
| Dependencies | 3 |
| Unpacked size | 5.1 KB |
| Known vulnerabilities | 0 (+1 in 1 direct dependencies) |
| Install scripts | no |
| GitHub stars | 14 |
| Author | SunstroUS |
| Maintainers | thvozdovic |
| Keywords | supreme, supreme-community |

## Links

- npm: https://www.npmjs.com/package/supreme-community-api-menox
- Repository: https://github.com/SunstroUS/supreme-community-api
- Homepage: https://github.com/SunstroUS/supreme-community-api#readme
- Issues: https://github.com/SunstroUS/supreme-community-api/issues
- npm.io page: https://npm.io/package/supreme-community-api-menox

## Dependencies (3)

- [cheerio](https://npm.io/package/cheerio.md) ^1.0.0-rc.2
- [request](https://npm.io/package/request.md) ^2.88.0
- [request-promise](https://npm.io/package/request-promise.md) ^4.2.4

## Recent versions

- 3.0.0 (latest) — 2020-07-06

## README

# supreme-community-api

[![NPM](https://nodei.co/npm/supreme-community-api.png)](https://www.npmjs.com/package/supreme-community-api)

### How to install

`npm install supreme-community-api --save`

### Usage (Promises)

```javascript
const supremeCommunity = require("supreme-community-api");

supremeCommunity()
  .then((items) => console.log(items)) // [{name: 'Box Logo', price: '$50', image: 'http://'}, ...]
  .catch((err) => console.log(err));
```

### Usage (Async/Await)

```javascript
const supremeCommunity = require("supreme-community-api");

async function init() {
  const items = await supremeCommunity();

  console.log(items); // [{name: 'Box Logo', price: '$50', image: 'http://'}, ...]
}
```

## License

supreme-community-api is licensed under [MIT License](https://github.com/SunstroUS/supreme-community-api/blob/master/LICENSE).

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