Skip to content
timote edited this page Jun 21, 2015 · 1 revision

Node

node filename.js - executes the file in node environment

NPM

npm install - installs to node_modules directory the package described in package.json

https://docs.npmjs.com/

Gulp

gulp taskname

Gulp is a tasker library. There must be a gulpfile.js in the project, the taskname is defined in it. If you do not give a task, it will run the default task defined in the gulpfile.

https://github.com/gulpjs/gulp/blob/master/docs/getting-started.md

Test Cases

Some of the folders-project include test directory under src. You can run each js-files with node command. There are also gulp test cases and you can run with the gulp command.

Clone this wiki locally