Gathering detailed insights and metrics for uuid-parse
Gathering detailed insights and metrics for uuid-parse
Gathering detailed insights and metrics for uuid-parse
Gathering detailed insights and metrics for uuid-parse
npm install uuid-parse
Module System
Min. Node Version
Typescript Support
Node Version
NPM Version
12 Stars
244 Commits
4 Forks
2 Watching
5 Branches
Updated on 28 Jan 2023
JavaScript (100%)
Cumulative downloads
Total Downloads
Last day
-13.4%
105,255
Compared to previous day
Last week
-8%
564,545
Compared to previous week
Last month
59.7%
2,117,182
Compared to previous month
Last year
66.1%
16,910,077
Compared to previous year
1
Simple, fast parsing and unparsing of RFC4122 UUIDS.
Features:
1npm install uuid-parse
1const uuidParse = require('uuid-parse');
Parse and unparse UUIDs
id
- (String) UUID(-like) stringbuffer
- (Array | Buffer) Array or buffer where UUID bytes are to be written. Default: A new Buffer is usedoffset
- (Number) Starting index in buffer
at which to begin writing. Default: 0Example parsing and unparsing a UUID string
1const bytes = uuidParse.parse('797ff043-11eb-11e1-80d6-510998755d10'); // -> <Buffer 79 7f f0 43 11 eb 11 e1 80 d6 51 09 98 75 5d 10> 2const string = uuidParse.unparse(bytes); // -> '797ff043-11eb-11e1-80d6-510998755d10'
npm test
Please make sure to check out the repository that originated these functions: node-uuid. These functions were removed from a recent version of that library and I wanted to make sure they were still exposed for the packages who were dependent on them.
No vulnerabilities found.
Reason
no binaries found in the repo
Reason
license file detected
Details
Reason
project is archived
Details
Reason
Found 1/29 approved changesets -- score normalized to 0
Reason
no effort to earn an OpenSSF best practices badge detected
Reason
security policy file not detected
Details
Reason
project is not fuzzed
Details
Reason
branch protection not enabled on development/release branches
Details
Reason
SAST tool is not run on all commits -- score normalized to 0
Details
Reason
23 existing vulnerabilities detected
Details
Score
Last Scanned on 2024-11-18
The Open Source Security Foundation is a cross-industry collaboration to improve the security of open source software (OSS). The Scorecard provides security health metrics for open source projects.
Learn More