1.0.0 • Published 1 year ago

useragents-me-api v1.0.0

Weekly downloads
-
License
MIT
Repository
github
Last release
1 year ago

Useragents.me Node.js APIs wrapper

npm.io Coverage Status Maintainability npm Donate

NPM

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

Author