Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

@tonyrl/rand-user-agent

Package Overview
Dependencies
Maintainers
0
Versions
74
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@tonyrl/rand-user-agent

This package is for getting latest agents and randomize it

  • 2.0.82
  • latest
  • Source
  • npm
  • Socket score

Version published
Maintainers
0
Created
Source

Random User Agent

Fork of rand-user-agent with the following changes:

  • Hybrid ESM/CJS module instead of ESM only

Usage Example

// either works
const { randUserAgent } = require('@tonyrl/rand-user-agent');
// or
import { randUserAgent } from '@tonyrl/rand-user-agent';

const agent = randUserAgent('desktop');
console.log(agent);

Original Description from upstream

Random User Agent

rand-user-agent is a nodejs package that provides random generation of a real user-agent string, based on the frequency the user-agents occur.

This package was originally created as a functionality for WebScrapingAPI, but it can be integrated into any node.js scraping project. If you need a dependable and feature-rich web scraper, give the WebScrapingAPI free trial a go!

Installation

Run the following command in the main folder of your project:

npm i rand-user-agent
:memo:Starting from version 2.0.0 onwards, this package is migrating to ESM.

Usage Example

import randUserAgent from "rand-user-agent";
const agent = randUserAgent("desktop");

console.log(agent);

You can also provide a browser and an operating system in the parameters of randUserAgent in order to filter out the user agents:

import randUserAgent from "rand-user-agent";
const agent = randUserAgent("desktop", "chrome", "linux");

console.log(agent);

How does it work

Using our own database with data about guests and their user-agent, we update a file called "user-agents.json" on a weekly basis with new information.

This data is saved in a json under the following format:

{
    deviceType1: {
        userAgent1: frequencyUserAgent1,
        userAgent2: frequencyUserAgent2,
        ...
    }
    ...
}

Because sometimes one user-agent might occur so many times that it will end up being returned most of the times in the result, we need to normalize the frequency values to prevent that. To do so, we sort an array with all the unique values of the frequency, and replace the frequency for each user-agent with the position where the frequency is in the sorted array. We are doing this using the JSONfrequencyNormalize function from helpers.js

To make things easier for us, when somebody uses the package we are first transforming the processed json into a indexes json, such as the one below:

{
    deviceType1: {
        userAgent1: {
            minIndex: 0,
            maxIndex: frequencyUserAgent1 - 1,
        },
        userAgent2: {
            minIndex: frequencyUserAgent1,
            maxIndex: frequencyUserAgent2 - lastMaxIndex - 1,
        },
        ...
    }
    ...
}

Using the data in this format allows us to easily retrieve a random user-agent, while also taking into account how often it occured in our data.

Keywords

FAQs

Package last updated on 13 Oct 2024

Did you know?

Socket

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.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc