fiverr
v0.0.3
Published
Unofficial fiverr library for node.js
Readme
An unofficial library for fiverr
It's an unofficial package of fiverr.
Installation
npm install fiverrGet the fiverr user details by username
const {getUser} = require('fiverr');
getUser('someUsername').then(user => {
console.log(user);
}).catch(err => {
console.error(err);
});import {getUser} from 'fiverr';
let user = await getUser('someUsername');
console.log(user);Contribution
Feel free to contribute to this project by creating an issue or submitting a PR to the github repository.
