Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

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.

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)