useragents-me-api
v1.0.0
Published
Node.js wrapper for useragents.me
Downloads
10
Maintainers
Readme
Useragents.me Node.js APIs wrapper
Simple Node.js wrapper for useragents.me APIs.
Install
npm i useragents-me-api
Example
const { useragentsme } = require('useragents-me-api');
async function main() {
try {
const res = await useragentsme();
console.log(res); // [{"ua": "Mozilla/5.0...", "pct": 36.123...}, ...]
} catch (error) {
console.log(error);
}
}
Run tests
npm test
Run lint
npm run lint