Skip to content

Instantly share code, notes, and snippets.

@larswittenberg
Last active August 29, 2015 14:00
Show Gist options
  • Save larswittenberg/11258195 to your computer and use it in GitHub Desktop.
Save larswittenberg/11258195 to your computer and use it in GitHub Desktop.
Gulp.js Einrichten
  1. Node.js installieren / direkter Download Link
  2. Gulp.js global installieren: Terminal: (sudo) npm install -g gulp
  3. Die Node Module vom Git ausschließen: in der Datei .gitignore folgendes ergänzen node_modules/*
  4. Ins Projekt Verzeichnis wechseln
  5. Erstmalig: npm init ausführen, evtl Infos eingeben und Bestätigen
  6. Gulp.js für das Projekt installieren: (sudo) npm install --save-dev gulp
  7. Benötigte Plugins installieren: (sudo) npm install gulp-sass gulp-notify browser-sync --save-dev
  8. Datei gulpfile.js im Projekt Ordner anlegen und konfigurieren (siehe anderes Gist)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment