Build Tools

Git Revert

The git revert command can be considered an 'undo' type command, however, it is not a traditional undo operation. Instead of removing the commit from [...]

Git Add

The git add command adds a change in the working directory to the staging area. It tells Git that you want to include updates to a particular file in the next [...]

Git Log

The git log command displays committed snapshots. It lets you list the project history, filter it, and search for specific changes. While git status lets you [...]

Git Status

The git status command displays the state of the working directory and the staging area. It lets you see which changes have been staged, which haven’t, [...]

Create Your First Cordova App

This guide shows you how to create a JS/HTML Cordova application and deploy them to various native mobile platforms using the cordova command-line [...]

Git Reset

The git reset command is a complex and versatile tool for undoing changes. It has three primary forms of invocation. These forms correspond to command line [...]

SCSS: differences between mixins, extends and placeholders

I used LESS a lot. These days I decided to try SCSS and to be honest it's a better choice for CSS pre-processor. It just gives me more functionalities and [...]

Getting Started with Command-Line Interfaces

As developers, we have lots of exciting tools at our disposal. For CSS work, we can use preprocessors like Sass and Less to improve our workflow. For [...]

How to Install Node.js

Many powerful open source projects have Node.js as a dependency, so often times you’ll need to set it up on your web server. But what if you wanted to [...]

Why we should stop using Grunt & Gulp

If you're building a modern JavaScript application or website, there's a good chance you've seen the JavaScript Build Tool Landscape. The heavyweights of this [...]