DvG
DvG

Reputation: 634

what is gulp.js and how it is related to npm

I am new to the development based on java-script frameworks. I want to understand gulp, npm. Somewhere, I read that these are open source client side development tool but I could not get more insight on this. Please help!

Upvotes: 2

Views: 623

Answers (1)

itacode
itacode

Reputation: 3787

It is a task runner, written in JavaScript to be run in a nodeJs environment. You need a package manager like npm to install it. Npm comes with nodejs.

An Introduction to Gulp.js

It is an application doing things like the following, instead of you. You need only to code once the instructions and run it.

Compressing new and modified images; compiling Sass to CSS code; code linting and validation; concatenating and minifying CSS and JavaScript files; deploying files to development, staging and production servers.

Upvotes: 2

Related Questions