首页 > 代码库 > gulp使用引导

gulp使用引导

全局安装npm  install  –g  gulp

 

安装到本地 npm install gulp –save-dev

新建gulpfile.js

 

编写文件内容并运行

var gulp = require(‘gulp‘);

gulp.task(‘default‘,function(){

    console.log(‘hello world‘);

});

 

 

gulp使用引导