![Oracle Drags Its Feet in the JavaScript Trademark Dispute](https://cdn.sanity.io/images/cgdhsj6q/production/919c3b22c24f93884c548d60cbb338e819ff2435-1024x1024.webp?w=400&fit=max&auto=format)
Security News
Oracle Drags Its Feet in the JavaScript Trademark Dispute
Oracle seeks to dismiss fraud claims in the JavaScript trademark dispute, delaying the case and avoiding questions about its right to the name.
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.
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.
Security News
Oracle seeks to dismiss fraud claims in the JavaScript trademark dispute, delaying the case and avoiding questions about its right to the name.
Security News
The Linux Foundation is warning open source developers that compliance with global sanctions is mandatory, highlighting legal risks and restrictions on contributions.
Security News
Maven Central now validates Sigstore signatures, making it easier for developers to verify the provenance of Java packages.