Tag: NodeJS

Gulp for handling AngularJS files

Many AngularJS modules means many script tags. Eliminate all these script tags by putting all these AngularJS files into one JavaScript file using Gulp. Use Gulp to watch any changes in the files for automatic concatenation and live reload.

Parameters and Query Strings in Express.js

I’ve recently been dabbling on Node.js and it’s been a really awesome server platform. So naturally, I've needed to use Express.js for scripting. This also means that I’ve been dealing with parameters and query strings. They’re very important if you’re a server-side developer no matter which scripting language you use. They help accomplish many things like web service API’s. Although these are common and straightforward for server-side development, I’d like to share my understanding of them.