Install node and npm

Node.js is a JavaScript runtime built on Chrome’s V8 JavaScript engine. Node.js uses an event-driven, non-blocking I/O model that makes it lightweight and efficient. Node.js’s package ecosystem, NPM, is the largest ecosystem of open source libraries in the world. NPM is a package manager for JavaScript. Use NPM to install, share, and distribute code; manage dependencies in your projects; and share & receive feedback with others. Install node For Windows and Mac users The installer can be downloaded from here. ...

June 12, 2016 · 2 min · Sanjeev Kumar Pandit

Getting started with gulp

Gulp is an automated tool that helps to enhance workflow. Why gulp? Simple Automation of tasks Platform independent Plugins available in large number Getting started Installation Instructions NPM needs to be installed in order to install gulp. Please find the installation instructions here. Remove gulp (if installed before) npm rm --global gulp Install gulp # Globally npm install --global gulp-cli # Within a project npm install gulp --save-dev Implementation in a project Create a file gulpfile.js in project’s root folder and add following contents in it. ...

June 11, 2016 · 2 min · Sanjeev Kumar Pandit