@denniskrol/device-profiles 1.20251112.0 → 1.20251116.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/README.md CHANGED
@@ -2,7 +2,9 @@
2
2
 
3
3
  Daily updated browser/device profiles with weighted random selection. Useful for realistic client fingerprint spoofing, testing, load generation.
4
4
 
5
- Data comes from a website with about 65% mobile and 35% desktop traffic. Uses [browser-profiler](https://github.com/denniskrol/browser-profiler) to get data
5
+ Data comes from a website with about 65% mobile and 35% desktop traffic, and uses [browser-profiler](https://github.com/denniskrol/browser-profiler) to get data.
6
+
7
+ This is inspired by [intoli/user-agents](https://github.com/intoli/user-agents) which doesn't seem to get updated anymore and lacks some data that I needed.
6
8
 
7
9
  ## Install
8
10
 
@@ -121,7 +123,11 @@ const randomDesktop = DeviceProfiles.random({ deviceType: 'desktop' });
121
123
  "platform": "Windows",
122
124
  "platformVersion": "10.0.0",
123
125
  "uaFullVersion": "142.0.7444.134"
124
- }
126
+ },
127
+ "weight":26,
128
+ "deviceType":"desktop",
129
+ "browser":"Chrome",
130
+ "osName":"Windows"
125
131
  }
126
132
  ```
127
133