0.0.3 • Published 3 years ago
fiverr v0.0.3
An unofficial library for fiverr
It's an unofficial package of fiverr.
Installation
npm install fiverr
Get 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.