
Product
Announcing Socket Fix 2.0
Socket Fix 2.0 brings targeted CVE remediation, smarter upgrade planning, and broader ecosystem support to help developers get to zero alerts.
useragent-wizard
Advanced tools
A TypeScript library for generating random user agents for various web browsers and platforms.
A TypeScript library for generating random user agents for various web browsers and platforms.
npm install useragent-wizard
import { generateUserAgent } from 'useragent-wizard';
const randomUserAgent = generateUserAgent();
console.log(randomUserAgent);
import { generateUserAgent } from 'useragent-wizard';
const randomUserAgent = generateUserAgent();
console.log(randomUserAgent);
const { generateUserAgent } = require('useragent-wizard');
const randomUserAgent = generateUserAgent();
console.log(randomUserAgent);
You can specify a browser for which to generate a user agent:
import { generateUserAgent } from 'useragent-wizard';
const chromeUserAgent = generateUserAgent('chrome');
console.log(chromeUserAgent);
Possible values for the browser parameter are: chrome
| firefox
| safari
| ie
| edge
| android
. If no browser is specified, a random browser will be chosen.
import { generateUserAgent } from 'useragent-wizard';
// Generate a random user agent
const randomUserAgent = generateUserAgent();
console.log(randomUserAgent);
// Output:
// => Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/99.0.9999.99 Safari/537.36
// Generate a Chrome user agent
const chromeUserAgent = generateUserAgent('chrome');
console.log(chromeUserAgent);
// Output:
// => Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/99.0.9999.99 Safari/537.36
// Generate an Android user agent
const androidUserAgent = generateUserAgent('android');
console.log(androidUserAgent);
// Output:
// => Mozilla/5.0 (Linux; Android 10; Pixel 3 Build/QQ3A.200705.002) AppleWebKit/537.36 (KHTML, like Gecko) Version/4.0 Chrome/84.0.4147.125 Mobile Safari/537.36
We welcome contributions from the community. If you'd like to contribute, please follow these guidelines:
main
branch of the mayurchhapra/random-useragent-generator
repository.To set up the development environment, follow these steps:
git clone https://github.com/mayurchhapra/random-useragent-generator.git
cd random-useragent-generator
npm install
npm run build
If you encounter any problems, please open an issue along with a detailed description on GitHub.
This project is licensed under the ISC License.
FAQs
A TypeScript library for generating random user agents for various web browsers and platforms.
The npm package useragent-wizard receives a total of 14 weekly downloads. As such, useragent-wizard popularity was classified as not popular.
We found that useragent-wizard demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Product
Socket Fix 2.0 brings targeted CVE remediation, smarter upgrade planning, and broader ecosystem support to help developers get to zero alerts.
Security News
Socket CEO Feross Aboukhadijeh joins Risky Business Weekly to unpack recent npm phishing attacks, their limited impact, and the risks if attackers get smarter.
Product
Socket’s new Tier 1 Reachability filters out up to 80% of irrelevant CVEs, so security teams can focus on the vulnerabilities that matter.