Giter VIP home page Giter VIP logo

gulp-md5's Introduction

gulp-md5

md5 plugin for gulp.

Usage

First, install gulp-md5 as a development dependency:

npm install --save-dev gulp-md5

Then, add it to your gulpfile.js:

var md5 = require("gulp-md5");

gulp.src("./src/*.ext")
	.pipe(md5({
		msg: "Hello Gulp!"
	}))
	.pipe(gulp.dest("./dist"));

API

md5(size)

size

Type: String
Default: null

Optionnal: you can pass the size to limit the size of the hash that is appended.

Example:

	gulp.src('**/*', {
        cwd: './src'
    })
        .pipe(md5())
        .pipe(gulp.dest('./whatever'));

The sample above will append the full md5 hash to each of the file matching src and store all of that into the whatever folder.

whatever/
├── index_a7ded4c00cdc9cdc47e55f6b85e3f909.html
├── app_6b85e3f9096b85e3f9096b85e3f90943.js
├── ...

If you pass the size argument, the hash will be truncated to that value. For instance md5(10) will produce:

whatever/
├── index_a7ded4c00c.html
├── app_6b85e3f909.js
├── ...

License

http://en.wikipedia.org/wiki/MIT_License[MIT License]

gulp-md5's People

Contributors

chevdor avatar raistlin916 avatar

Watchers

 avatar  avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.