We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
gulp 是基于 node.js 的前端构建工具。它能通过自动执行常见任务,比如编译预处理CSS,压缩和合并JavaScript,来改进网站开发的过程。本文将一步步教你如何使用 gulp 来压缩 js/css 文件。
安装使用 gulp 前,需要确保你的PC上已经安装 node.js !未安装的同学可以点击下载安装,下载完成后直接运行程序 。npm 会随着安装包一起安装。
完成 node.js 的安装后,打开 node.js command prompt,就可以使用 npm 开始安装 gulp 了。
安装完成后你的项目文件中会出现 node_modules 文件夹:
当然安装好gulp后,还需要安装相应的插件才可以实现压缩功能。这里需要下载安装以下插件:
执行以下命令就可以安装插件: npm install gulp-minify-css gulp-concat gulp-jshint gulp-rename gulp-uglify --save-dev 这时安装完的插件就会出现在 node_modules 文件夹中。如下图:
现在准备工作已经全部完成,可以开始使用gulp了。
OK,在根目录下执行gulp命令, 你就可以在css和js文件夹中看到相应压缩好的文件了。
The text was updated successfully, but these errors were encountered:
Update README.md
b0d51d6
add a new issue YIXUNFE#15
简单明了,好 ~ 👏👏👏
Sorry, something went wrong.
No branches or pull requests
gulp 压缩 js/css 文件
gulp 是基于 node.js 的前端构建工具。它能通过自动执行常见任务,比如编译预处理CSS,压缩和合并JavaScript,来改进网站开发的过程。本文将一步步教你如何使用 gulp 来压缩 js/css 文件。
Node.js安装
安装使用 gulp 前,需要确保你的PC上已经安装 node.js !未安装的同学可以点击下载安装,下载完成后直接运行程序 。npm 会随着安装包一起安装。
gulp安装
完成 node.js 的安装后,打开 node.js command prompt,就可以使用 npm 开始安装 gulp 了。
安装完成后你的项目文件中会出现 node_modules 文件夹:
当然安装好gulp后,还需要安装相应的插件才可以实现压缩功能。这里需要下载安装以下插件:
执行以下命令就可以安装插件:
npm install gulp-minify-css gulp-concat gulp-jshint gulp-rename gulp-uglify --save-dev
这时安装完的插件就会出现在 node_modules 文件夹中。如下图:
## gulp使用
现在准备工作已经全部完成,可以开始使用gulp了。
OK,在根目录下执行gulp命令, 你就可以在css和js文件夹中看到相应压缩好的文件了。
The text was updated successfully, but these errors were encountered: