contest_api
v1.0.3
Published
it returns a list of contests like hackathons, programming contests, etc.. Its for learning purpose.... Avoid using this.
Downloads
10
Readme
Contest Api
it returns a list of contests like hackathons, programming contests, etc.. Its for learning purpose.... Avoid using this.
Installation
npm i contest_api
Usage
const clist = require("contest_api"); // import the installed package
clist()
.then((res) => {
// If the function successfully retrieves the data, it enters this block
console.log(res); // Print the contest data on the console
})
.catch((err) => {
console.log(err); // Error handler
});