supreme-community-api-menox

3.0.0 • Public • Published

supreme-community-api

NPM

How to install

npm install supreme-community-api --save

Usage (Promises)

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)

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.

Package Sidebar

Install

npm i supreme-community-api-menox

Weekly Downloads

0

Version

3.0.0

License

MIT

Unpacked Size

5.27 kB

Total Files

7

Last publish

Collaborators

  • thvozdovic