• 设为首页
  • 点击收藏
  • 手机版
    手机扫一扫访问
    迪恩网络手机版
  • 关注官方公众号
    微信扫一扫关注
    迪恩网络公众号

Raistlin916/gulp-md5

原作者: [db:作者] 来自: 网络 收藏 邀请

开源软件名称(OpenSource Name):

Raistlin916/gulp-md5

开源软件地址(OpenSource Url):

https://github.com/Raistlin916/gulp-md5

开源编程语言(OpenSource Language):

JavaScript 100.0%

开源软件介绍(OpenSource Introduction):

NPM NPM

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({printOnly: True})

printOnly

Type: Boolean
Default: false

Optional: you can pass printOnly to skip md5 appending to filenames and just print md5 of file to console.

md5({separator: '_'})

separator

Type: String
Default: '_'

Optional: you can pass other separator like '-'.

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]




鲜花

握手

雷人

路过

鸡蛋
该文章已有0人参与评论

请发表评论

全部评论

专题导读
热门推荐
阅读排行榜

扫描微信二维码

查看手机版网站

随时了解更新最新资讯

139-2527-9053

在线客服(服务时间 9:00~18:00)

在线QQ客服
地址:深圳市南山区西丽大学城创智工业园
电邮:jeky_zhao#qq.com
移动电话:139-2527-9053

Powered by 互联科技 X3.4© 2001-2213 极客世界.|Sitemap