https://github.com/jhermann/hello-gulp-js
:mortar_board: A minimal gulp sample project that also uses npm and nodeenv.
https://github.com/jhermann/hello-gulp-js
demo gulp hello-world javascript
Last synced: 3 months ago
JSON representation
:mortar_board: A minimal gulp sample project that also uses npm and nodeenv.
- Host: GitHub
- URL: https://github.com/jhermann/hello-gulp-js
- Owner: jhermann
- License: apache-2.0
- Created: 2014-06-28T11:14:14.000Z (about 12 years ago)
- Default Branch: master
- Last Pushed: 2014-07-09T11:25:07.000Z (about 12 years ago)
- Last Synced: 2025-03-28T08:15:21.480Z (over 1 year ago)
- Topics: demo, gulp, hello-world, javascript
- Language: JavaScript
- Homepage:
- Size: 164 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# hello-gulp-js
A minimal gulp sample project that also uses npm and nodeenv.
## Building the Project
You create a [nodeenv](https://github.com/ekalinin/nodeenv),
install the project dependencides in it, and then run the build tool `gulp`.
Other wide-spread ones are `grunt` and `bower`.
```sh
git clone "https://github.com/jhermann/hello-gulp-js.git"
cd hello-gulp-js
test -e bin/npm || nodeenv --node=system --with-npm --force .
. bin/activate
test -d lib/node_modules/gulp || npm install -g gulp
npm install
gulp
```
## Similar Projects
* [hilios/hello-gulp](https://github.com/hilios/hello-gulp)