# uuid-int

> uuid-int for nodejs

Latest version **3.1.0** (published 2021-06-12) · MIT license · 0 weekly downloads

## Install

```sh
npm install uuid-int
pnpm add uuid-int
yarn add uuid-int
bun add uuid-int
```

## 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 | 3.1.0 |
| Published | 2021-06-12 |
| First published | 2019-06-02 |
| Weekly downloads | 0 |
| License | MIT |
| TypeScript types | none |
| Module format | CommonJS |
| Node | >=8.9.0 |
| Dependencies | 0 |
| Unpacked size | 5.1 KB |
| Known vulnerabilities | 0 |
| Install scripts | no |
| GitHub stars | 7 |
| Author | wbget |
| Maintainers | wbget |
| Keywords | uuid-int, snowflake, uuid, int, integer |

## Links

- npm: https://www.npmjs.com/package/uuid-int
- Repository: https://github.com/wbget/uuid-int
- Issues: https://github.com/wbget/uuid-int/issues
- npm.io page: https://npm.io/package/uuid-int

## Alternatives

- [eslint-plugin-sonarjs](https://npm.io/package/eslint-plugin-sonarjs.md) — 2.9M weekly downloads
- [eslint-config-expo](https://npm.io/package/eslint-config-expo.md) — 1.5M weekly downloads
- [@matter/protocol](https://npm.io/package/@matter/protocol.md) — 63.5K weekly downloads
- [@eventcatalog/linter](https://npm.io/package/@eventcatalog/linter.md) — 24.8K weekly downloads
- [@inrupt/eslint-config-base](https://npm.io/package/@inrupt/eslint-config-base.md) — 4.5K weekly downloads

## Recent versions

- 3.1.0 (latest) — 2021-06-12
- 3.0.3 — 2020-03-25
- 3.0.2 — 2020-03-25
- 3.0.0 — 2020-03-25
- 2.0.1 — 2019-08-06
- 2.0.0 — 2019-08-05
- 1.2.0 — 2019-06-27
- 1.1.0 — 2019-06-02
- 1.0.1 — 2019-06-02
- 1.0.0 — 2019-06-02

## README

[![NPM version][npm-image]][npm-url]
[![David deps][david-image]][david-url]
[![Known Vulnerabilities][snyk-image]][snyk-url]
[![npm download][download-image]][download-url]

[npm-image]: https://img.shields.io/npm/v/uuid-int.svg?style=flat-square
[npm-url]: https://npmjs.org/package/uuid-int
[travis-image]: https://img.shields.io/travis/wbget/uuid-int.svg?style=flat-square
[travis-url]: https://travis-ci.org/wbget/uuid-int
[codecov-image]: https://img.shields.io/codecov/c/github/wbget/uuid-int.svg?style=flat-square
[codecov-url]: https://codecov.io/github/wbget/uuid-int?branch=master
[david-image]: https://img.shields.io/david/wbget/uuid-int.svg?style=flat-square
[david-url]: https://david-dm.org/wbget/uuid-int
[snyk-image]: https://snyk.io/test/npm/uuid-int/badge.svg?style=flat-square
[snyk-url]: https://snyk.io/test/npm/uuid-int
[download-image]: https://img.shields.io/npm/dm/uuid-int.svg?style=flat-square
[download-url]: https://npmjs.org/package/uuid-int

# uuid-int

*inspired by snowflake.*   
uuid-int for nodejs .

[中文](./README.zh-CN.md)

## Quick Start

__Install__

```
npm install --save uuid-int
```

__Use__

```
const UUID = require('uuid-int');

// number  0 <= id <=511
const id = 0;

const generator = UUID(id);

const uuid = generator.uuid();
console.log(uuid); // 3270411116609537
```

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