Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/darraghoriordan/pluralsight-gulp-master
https://github.com/darraghoriordan/pluralsight-gulp-master
Last synced: 4 days ago
JSON representation
- Host: GitHub
- URL: https://github.com/darraghoriordan/pluralsight-gulp-master
- Owner: darraghoriordan
- License: mit
- Created: 2015-03-06T01:12:33.000Z (almost 10 years ago)
- Default Branch: master
- Last Pushed: 2015-03-06T01:12:42.000Z (almost 10 years ago)
- Last Synced: 2024-04-15T00:50:26.980Z (8 months ago)
- Language: CSS
- Size: 691 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# pluralsight-gulp
You've built your JavaScript application but how do you automate testing, code analysis, running it locally or deploying it? These redundant tasks can consume valuable time and resources. Stop working so hard and take advantage of JavaScript task automation using Gulp to streamline these tasks and give you back more time in the day. Studying this repo can help clarify how Gulp works, jump-start task automation with Gulp, find and resolve issues faster, and be a more productive.## Requirements
- Install Node
- on OSX install [home brew](http://brew.sh/) and type `brew install node`
- on Windows install [chocolatey](https://chocolatey.org/)
- Read here for some [tips on Windows](http://jpapa.me/winnode)
- open command prompt as administrator
- type `choco install nodejs`
- type `choco install nodejs.install`
- On OSX you can alleviate the need to run as sudo by [following these instructions](http://jpapa.me/nomoresudo). I highly recommend this step on OSX
- Open terminal
- Type `npm install -g node-inspector bower gulp`## Quick Start
Prior to taking the course, clone this repo and run the content locally
```bash
$ npm install
$ bower install
$ npm start
```