1, Installation Gulp
NPM Install gulp--save-devnpm Install Gulp-rev-append--save-dev
After the installation is complete, view the Package.json file as follows:
2. Writing gulpfile.js files
1 var // Introducing Files 2 var // Introducing Files
1 function () {2 gulp.src ([' js/**/* '])3 . Pipe (Gulp.dest (' Dist/js ')); 4 });
3. Run JS script
Gulp Testjs
Use in HTML files
<rel= "stylesheet" href= "Css/[email protected] @hash" >
After running the script, locate the appropriate HTML file in the Dist folder, and you will find the version number
Also found in the operation of the font file other ways to handle
1) Install Node-font-awesome
NPM I Node-font-awesome
2) Introduction of files
var fontawesome = require (' Node-font-awesome ');
3) Gulpfile.js
1 function () {2 gulp.src (fontawesome.fonts)3 . Pipe (Gulp.dest (' dist/js/vendor/ Font-awesome/fonts ')); 4 });
Gulp-rev-append MD5 Version number