crc2json

0.1.2 • Public • Published

crc2json

Scan a directory of files and generates a CRC32 for each file and outputs them in JSON format.

CLI install and usage

npm install -g crc2json

To scan the current directory and write to list.json

crc2json -o list.json

Get help for other flags

crc2json -h

As a node module

npm install crc2json --save

Using callback function example:

 
var crc2json = require('crc2json')
 
crc2json(process.cwd(), function(map){
    console.log(map)
})

Using EventEmitter example:

 
var EventEmitter = require('events').EventEmitter
var event        = new EventEmitter
 
event.on('crc', function(filename, crc) {
 ...
})
 
event.on('complete', function(){ ... })
 
crc2json(process.cwd(), event)
 

License MIT

Readme

Keywords

none

Package Sidebar

Install

npm i crc2json

Weekly Downloads

4

Version

0.1.2

License

MIT

Last publish

Collaborators

  • hyperlink