# gulp_dev **Repository Path**: pipepandafeng/gulp_dev ## Basic Information - **Project Name**: gulp_dev - **Description**: 基于gulp的构建模板 - **Primary Language**: Unknown - **License**: MIT - **Default Branch**: master - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 0 - **Forks**: 0 - **Created**: 2021-08-27 - **Last Updated**: 2022-05-24 ## Categories & Tags **Categories**: Uncategorized **Tags**: Gulp, Nodejs, HTML, CSS ## README # gulp 学习 ## lesson 1 - 初始化gulp配置,输出hello 安装依赖 ``` bash $ npm install --global gulp-cli $ npm install --save-dev gulp ``` 输出hello ```js var gulp = require("gulp"); gulp.task("hello", (done) => { console.log("hello"); done(); }); ```