gulp4のインストール手順
gulp4のインストール方法を自分なりにまとめる。
以前gulp使ってたけど、しばらく触ってなかった間に(gulp3→4で)色々と変わったみたい。
npm初期化
npm init
npmインストール
npm install gulp -D
ローカルへのインストールで良い。
インストールされたか確認
npx gulp -v
npx
つければ良い。
(npmのバージョンが5.2.0以上であること)
インストールに失敗したモジュールがあればインストール
npm install npm-install-missing --save-dev
gulp実行テスト
gulpfile.js作成
var gulp = require('gulp');
gulp.task('default', function(done){
console.log('gulp installed!!');
return done();
});
実行できるか確認
npx gulp
参考リンク
Author And Source
この問題について(gulp4のインストール手順), 我々は、より多くの情報をここで見つけました https://qiita.com/kszk/items/55f837ca505937f6cf5a著者帰属:元の著者の情報は、元のURLに含まれています。著作権は原作者に属する。
Content is automatically searched and collected through network algorithms . If there is a violation . Please contact us . We will adjust (correct author information ,or delete content ) as soon as possible .