Repositorio del curso CCOM4030 el semestre B91 del proyecto Artesanías con el Instituto de Cultura
lyxaira.glass 74ca844f42 Actualizacion cambios generados: seccion #12, #14 y #15. 3 years ago
..
LICENSE.md Actualizacion cambios generados: seccion #12, #14 y #15. 3 years ago
cli.js Actualizacion cambios generados: seccion #12, #14 y #15. 3 years ago
index.d.ts Actualizacion cambios generados: seccion #12, #14 y #15. 3 years ago
index.js Actualizacion cambios generados: seccion #12, #14 y #15. 3 years ago
package.json Actualizacion cambios generados: seccion #12, #14 y #15. 3 years ago
readme.md Actualizacion cambios generados: seccion #12, #14 y #15. 3 years ago

readme.md

MD5 file

Get the MD5-sum of a given file, with low memory usage, even on huge files.

Installation

npm install --save md5-file

Usage

As a module

const md5File = require('md5-file')

/* Async usage */
md5File('LICENSE.md').then((hash) => {
  console.log(`The MD5 sum of LICENSE.md is: ${hash}`)
})

/* Sync usage */
const hash = md5File.sync('LICENSE.md')
console.log(`The MD5 sum of LICENSE.md is: ${hash}`)

As a command line tool

$ md5-file LICENSE.md
ad1faf9381e43c471dc381c17a4ee4b6

API

md5File(path: string) => Promise<string>

Asynchronously get the MD5-sum of the file at path.

Returns a Promise that will be resolved with a string containing the MD5-sum.

md5File.sync(path: string) => string

Synchronously get the MD5-sum of the file at path.

License

MIT