在线时间:8:00-16:00
迪恩网络APP
随时随地掌握行业动态
扫描二维码
关注迪恩网络微信公众号
开源软件名称(OpenSource Name):Raistlin916/gulp-md5开源软件地址(OpenSource Url):https://github.com/Raistlin916/gulp-md5开源编程语言(OpenSource Language):JavaScript 100.0%开源软件介绍(OpenSource Introduction):gulp-md5
UsageFirst, install npm install --save-dev gulp-md5 Then, add it to your var md5 = require("gulp-md5");
gulp.src("./src/*.ext")
.pipe(md5({
msg: "Hello Gulp!"
}))
.pipe(gulp.dest("./dist")); APImd5({printOnly: True})printOnlyType: Optional: you can pass printOnly to skip md5 appending to filenames and just print md5 of file to console. md5({separator: '_'})separatorType: Optional: you can pass other separator like '-'. md5(size)sizeType: 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
├── ... Licensehttp://en.wikipedia.org/wiki/MIT_License[MIT License] |
2023-10-27
2022-08-15
2022-08-17
2022-09-23
2022-08-13
请发表评论