npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2024 – Pkg Stats / Ryan Hefner

autosar-crc

v1.1.3

Published

8,16,32,64 bit crc algorithms as defined by the AUTOSAR standard

Downloads

25

Readme

AUTOSAR-CRC

A C++ implemented set of 8,16,32,64 bit cyclic redundancy check (CRC) functions conforming to the CRC spec given by AUTOSAR. Written in C++ and compiled as a 'C++ addon' for use in JavaScript. Available on NPM.

Getting Started

These instructions will get you up and running using the autosar-crc node module on your local machine.

Prerequisites

To get going you need the following installed:

  • NodeJS
  • npm
  • c++17 compiler

Installing

Autosar-crc is available on the npm registry, so within your console you can install autosar-crc.

npm install autosar-crc

Different types of CRC

Autosar-crc provides the following:

const autocrc = require('autosar-crc');

console.log(autocrc.crc8('123456789'));
console.log(autocrc.crc8_h2f('123456789'));
console.log(autocrc.crc16('123456789'));
console.log(autocrc.crc32('123456789'));
console.log(autocrc.crc32_p4('123456789'));
console.log(autocrc.crc64('123456789'));
node example.js 

You should get the following result:

75
223
10673
3421780262
379048042
11051210869376104000

The polynomials of the CRC match the spec given in the AUTOSAR standard, see crc_tables.h for specifics on the polynomials.

Each CRC accepts the following types:

  • String
  • TypedArray
  • ArrayBuffer
const autocrc = require('autosar-crc');

const arr = new Uint8Array([0x31,0x32,0x33,0x34,0x35,0x36,0x37,0x38,0x39]);

console.log(autocrc.crc8(arr));
console.log(autocrc.crc8(arr.buffer));
console.log(autocrc.crc8('123456789'))

Should give you the following result (note: 0x31 is hex for 1):

75
75
75

Benchmarks

Running crc32 over the entire works of Shakespeare 100x on a MacBook Air gives the following:

autosar-crc: 2.442s
crc: 3.293s
crc32: 56.973s

Running the tests

The tests are found in the main.test.js file and are run with Jest.

Break down into end to end tests

The test script is defined in package.json so you can run:

npm test

Built With

Authors

License

This project is licensed under the ISC License - see the LICENSE file for details

Acknowledgments

  • Bastian Molkenthin for the table generation here