Gathering detailed insights and metrics for crc
Gathering detailed insights and metrics for crc
Gathering detailed insights and metrics for crc
Gathering detailed insights and metrics for crc
npm install crc
98.8
Supply Chain
100
Quality
76
Maintenance
100
Vulnerability
100
License
Module System
Min. Node Version
Typescript Support
Node Version
NPM Version
349 Stars
214 Commits
72 Forks
12 Watching
4 Branches
23 Contributors
Updated on 18 Nov 2024
Minified
Minified + Gzipped
Python (68.83%)
TypeScript (19.26%)
Shell (4.49%)
JavaScript (3.76%)
C (3.42%)
Makefile (0.24%)
Cumulative downloads
Total Downloads
Last day
-6.1%
380,739
Compared to previous day
Last week
2.3%
2,247,632
Compared to previous week
Last month
6.7%
9,222,613
Compared to previous month
Last year
-22.3%
117,201,321
Compared to previous year
1
Functions for calculating Cyclic Redundancy Checks (CRC) values for the Node.js and front-end.
pycrc
as a refenrence.crc1
)crc8
)crc81wire
)crc8dvbs2
)crc16
)crc16ccitt
)crc16modbus
)crc16kermit
)crc16xmodem
)crc24
)crc32
)crc32mpeg2
)crcjam
)npm install crc
Using specific CRC is the recommended way to reduce bundle size:
1import crc32 from 'crc/crc32'; 2crc32('hello').toString(16); 3// "3610a686"
Alternatively you can use main default export:
1import crc from 'crc'; 2crc.crc32('hello').toString(16); 3// "3610a686"
If you really wish to minimize bundle size, you can import CRC calculators directly and pass an instance of Int8Array
:
1import crc32 from 'crc/calculators/crc32'; 2const helloWorld = new Int8Array([104, 101, 108, 108, 111, 32, 119, 111, 114, 108, 100]); 3crc32(helloWorld).toString(16); 4// "3610a686"
CommonJS is supported as well without the need to unwrap .default
:
1const crc32 = require('crc/crc32'); 2crc32('hello').toString(16); 3// "3610a686"
Calculate a CRC32 of a file:
1crc32(fs.readFileSync('README.md', 'utf-8')).toString(16); 2// "127ad531"
Or using a Buffer
:
1crc32(fs.readFileSync('README.md', 'utf-8')).toString(16); 2// "127ad531"
Incrementally calculate a CRC:
1let value = crc32('one'); 2value = crc32('two', value); 3value = crc32('three', value); 4value.toString(16); 5// "9e1c092"
npm test
pycrc library is which the source of all of the CRC tables.
The MIT License (MIT)
Copyright (c) 2014 Alex Gorbatchev
Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
No vulnerabilities found.
No security vulnerabilities found.