https://github.com/eugenehp/react-native-uuid
UUID generation for react-native.
https://github.com/eugenehp/react-native-uuid
random react-native typescript uuid
Last synced: 1 day ago
JSON representation
UUID generation for react-native.
- Host: GitHub
- URL: https://github.com/eugenehp/react-native-uuid
- Owner: eugenehp
- License: mit
- Created: 2016-06-20T20:26:47.000Z (almost 9 years ago)
- Default Branch: master
- Last Pushed: 2025-01-18T22:29:34.000Z (3 months ago)
- Last Synced: 2025-04-14T02:58:16.630Z (1 day ago)
- Topics: random, react-native, typescript, uuid
- Language: TypeScript
- Homepage:
- Size: 562 KB
- Stars: 272
- Watchers: 5
- Forks: 35
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
- Contributing: CONTRIBUTING.md
- License: LICENSE
- Code of conduct: CODE_OF_CONDUCT.md
- Security: SECURITY.md
Awesome Lists containing this project
- awesome - eugenehp/react-native-uuid - UUID generation for react-native. (TypeScript)
- jimsghstars - eugenehp/react-native-uuid - UUID generation for react-native. (TypeScript)
README
# react-native-uuid
[](./LICENSE)
[](https://www.npmjs.com/package/react-native-uuid)
[](https://npmcharts.com/compare/react-native-uuid?minimal=true)
[](https://npmcharts.com/compare/react-native-uuid?minimal=true)
[](https://github.com/eugenehp/react-native-uuid/watchers)
[](https://github.com/eugenehp/react-native-uuid/stargazers)
[](https://github.com/eugenehp/react-native-uuid/network/members)
[](https://github.com/eugenehp/react-native-uuid/issues?utf8=%E2%9C%93&q=is%3Aissue+is%3Aopen+label%3Abug)
[](https://github.com/eugenehp/react-native-uuid/issues)
[](https://github.com/eugenehp/react-native-uuid/pulls)[](https://packagephobia.com/result?p=react-native-uuid)
[](https://bundlephobia.com/[email protected])`react-native-uuid` is a zero-dependency TypeScript implementation of [RFC4122](https://tools.ietf.org/html/rfc4122) standard **A Universally Unique IDentifier (UUID) URN Namespace**. Please note, this library uses pseudo random generator based on top of `Math.random`. New version with hardware support is WIP.
**Heavily inspired by:**
- [uuid](https://github.com/uuidjs/uuid)
- [pure-uuid](https://github.com/rse/pure-uuid)
- [nanoid](https://www.npmjs.com/package/nanoid)Huge thanks to [Randy Coulman](https://github.com/randycoulman) for the early version of a code.
## Getting started
Use this steps to install and create UUIDs. Example project is available [here](https://github.com/eugenehp/RNUUID)
### 1. Install
```shell
npm install react-native-uuid
```### 2. Create a UUID
```javascript
import uuid from 'react-native-uuid';
uuid.v4(); // ⇨ '11edc52b-2918-4d71-9058-f7285e29d894'
```## Documentation
Methods documentation is available [here](./docs/modules.md)
## Troubleshooting
Previous version has been based on `randombytes` that is not compatible with react-native out of the box.
Please submit an [issue](https://github.com/eugenehp/react-native-uuid/issues) if you found a bug.## Contributing
See the [contributing guide](CONTRIBUTING.md) to learn how to contribute to the repository and the development workflow.
## Sponsorship
Thank you to our sponsors:
[
](https://www.reactivelions.com)
## License
[MIT](./LICENSE)
Copyright (c) 2016-2025 Eugene Hauptmann