Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
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: about 1 month 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 (over 10 years ago)
- Default Branch: master
- Last Pushed: 2014-07-09T11:25:07.000Z (over 10 years ago)
- Last Synced: 2024-10-07T20:08:37.256Z (about 1 month ago)
- Topics: demo, gulp, hello-world, javascript
- Language: JavaScript
- Homepage:
- Size: 164 KB
- Stars: 0
- Watchers: 3
- 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-jstest -e bin/npm || nodeenv --node=system --with-npm --force .
. bin/activate
test -d lib/node_modules/gulp || npm install -g gulpnpm install
gulp
```## Similar Projects
* [hilios/hello-gulp](https://github.com/hilios/hello-gulp)