Skip to content

SeanWhelan/supreme-community-api

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

29 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

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.

About

Pull info from the latest drop on www.supremecommunity.com/

Resources

License

Stars

Watchers

Forks

Packages

 
 
 

Contributors

Languages

  • JavaScript 100.0%