A tiny, universal client for the Dev.to API written in Typescript.
- Tiny <1KB size gzip
- Works in Node.js and in Browser
- Built-in Typescript support
npm i dev-to-js
Import dev-to-js
module in your project and initialize it with your apiKey.
import DevToJS from 'dev-to-js'
const DevToClient = new DevToJS({ apiKey: '%apiKey%' })
DevToClient.getMyArticles().then((data) => {
console.log(data)
})
DevToClient.getFollowers().then((data) => {
console.log(data)
})