# stb-guid

> STB GUID function

Latest version **1.1.0** (published 2016-04-25) · MIT license · 0 weekly downloads

## Install

```sh
npm install stb-guid
pnpm add stb-guid
yarn add stb-guid
bun add stb-guid
```

## Health

**Score 15/100 (F)** — status: abandoned.

Positive: no vulnerabilities.

Warnings: low downloads; no types; no esm support.

Negative: abandoned; low maintenance score.

## Facts

| | |
|---|---|
| Version | 1.1.0 |
| Published | 2016-04-25 |
| First published | 2016-04-25 |
| Weekly downloads | 0 |
| License | MIT |
| TypeScript types | none |
| Module format | CommonJS |
| Dependencies | 0 |
| Known vulnerabilities | 0 |
| Install scripts | no |
| Author | o95 |
| Maintainers | eivindingebrigtsen |

## Links

- npm: https://www.npmjs.com/package/stb-guid
- npm.io page: https://npm.io/package/stb-guid

## Recent versions

- 1.1.0 (latest) — 2016-04-25

## README

# STB GUID
Returns a Globally Unique Identifier

#### GUID
GUID (or UUID) is an acronym for 'Globally Unique Identifier' (or 'Universally Unique Identifier'). It is a 128-bit integer number used to identify resources. The term GUID is generally used by developers working with Microsoft technologies, while UUID is used everywhere else.

#### How unique is a GUID?
128-bits is big enough and the generation algorithm is unique enough that if 1,000,000,000 GUIDs per second were generated for 1 year the probability of a duplicate would be only 50%. Or if every human on Earth generated 600,000,000 GUIDs there would only be a 50% probability of a duplicate.

## Installation

```javascript
npm install stb-guid
```

## Use

```javascript
var guid = require('stb-guid');
guid() // returns ex: cbb9a1d7-f048-4c3c-9add-d7018b0c9eaa

```

---
_Source: https://npm.io/package/stb-guid · Machine-readable twin of the npm.io package page. Health data is recomputed on every publish._
