UNPKG

browser-id

Version:

Unique ID for current browser (client).

17 lines (11 loc) 853 B
# browser-id [![Node](https://github.com/CatChen/browser-id/actions/workflows/node.yml/badge.svg)](https://github.com/CatChen/browser-id/actions/workflows/node.yml) [![Deno](https://github.com/CatChen/browser-id/actions/workflows/deno.yml/badge.svg)](https://github.com/CatChen/browser-id/actions/workflows/deno.yml) [![codecov](https://codecov.io/gh/CatChen/browser-id/branch/main/graph/badge.svg)](https://codecov.io/gh/CatChen/browser-id) `browserID()` function always gives you the same ID for the same browser. You can use it as a key to store user preferences on server side. ```JavaScript import { browserID } from 'browser-id'; const id = browserID(); ``` The return value is always a `string` when using TypeScript. Use package name with scope when used in Deno with JSR. ```TypeScript import { browserID } from '@catchen/browser-id'; ```