npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2024 – Pkg Stats / Ryan Hefner

@cashfreepayments/cashfree-browser-data

v0.0.8

Published

Browser Information

Downloads

259

Readme

Cashfree Browser Data Collection SDK

License Release TestCases Build

The Cashfree Browser Data Collection SDK is a user-friendly solution that allows businesses to gather important data directly from users' browsers. This SDK seamlessly captures essential information about users' browsing behavior and preferences, providing businesses with valuable insights. By leveraging this browser-specific data, businesses can optimize their services, personalize user experiences, and make informed decisions based on accurate and reliable information.

Preview: https://cashfree.github.io/cashfree-browser-data/src/

Installation

  1. Using NPM package
npm i @cashfreepayments/cashfree-browser-data
import {getBrowserData} from "cashfree-browser-data";
  1. Using CDN URL
<script src="https://cdn.jsdelivr.net/gh/cashfree/cashfree-browser-data@latest/dist/browser.min.js"></script>

Note: Make sure only one of the above is present in your application

Implementation

  1. Using NPM package
let data = await getBrowserData();
  1. Using CDN URL
let data = await browserInfo.getBrowserData();

Make sure it is invoked inside an async function

Parameters Fetched

The data variable will be a json object which has the following parameters

| Parameter | Information | | -------------------- | ------------------------------------------ | |device_type |Screen Information either mobile or desktop | |session_id |Hash of Browser Cookies | |device_hash |Unique Identifier for Browser | |os_name |Device Operating System Name | |os_version |Device Operating System Version | |user_agent |Browser User Agent Data | |browser_hash |Hash of Browser User Agent | |browser_name |Browser Application Name | |private_mode |Incognito or not | |browser_version |Browser Version | |cookie_enabled |Browser Cookies enabled or not | |screen_width |Device Screen Width | |screen_height |Device Screen Height | |region_timezone |Timezone Data | |region_timezone_offset|Timezone Offset Value | |region_language |Browser Language | |installed_fonts |Browser Installed Fonts | |installed_plugins |Browser Installed Plugins | |battery_percentage |Device Battery Percentage | |gpu_renderer |GPU Information |