API-DEVUP is a powerful Node.js library is intended for interaction with the service DEV-UP.RU 🚀
| 📖 API Documentation | 📖 Module Documentation | 🤖 Author |
|---|
- Works with large collections of data
- Easy authorization form
Node.js 12.0.0 or newer is required
yarn add api-devupnpm i api-devup --saveJavaScript
const{ DevUp }=require("api-devup");constAPI=newDevUp("token");API.profile.get().then((res)=>console.log(res));TypeScript
import{DevUp}from"api-devup";constAPI=newDevUp("token");API.profile.get().then((res)=>console.log(res));