MongoDB Pretty Print Result Objects in Mongo Interactive Shell
This is just a mongodb quick tip in regards to printing the result sets with proper formatting in the mongo interactive shell. Usually when you select documents in a collection using find() in the...
View ArticleUsing Adobe Edge Inspect for Cross-Device Web Page Debugging and Synchronized...
Using Adobe Edge Inspect you can inspect your webpages (like you do in chrome dev tools) across various remote devices (mobiles, tablets, etc.). You basically connect multiple iOS or Android devices to...
View ArticleUsing Node Version Manager (NVM) to Manage Multiple Node.js Versions
Node Version Manager (NVM) is a neat little bash script that allows you to manage multiple versions of Node.js on the same box. A version manager really helps to test our applications under different...
View ArticleHow To Use Twitter OAuth with node-oauth in your Node.js / Express Application
I am building a Node.js application where I want the users to be able to signup with their twitter credentials rather than remembering another set of username/pasword. My framework of choice is...
View ArticleUsing Underscore.string for String Manipulations in JavaScript
Underscore.string is an excellent string manipulation library (or helper) for Javascript that can be used with or without the nifty Underscore.js library. It can be used client side in browsers or...
View ArticleUsing the Node.js Bcrypt Module to Hash and Safely Store Passwords
Using bcrypt is the proper way to store passwords in your database regardless of whatever language your backend is built in – PHP, Ruby, Python, Node.js, etc. Why ? Here’s the answer. So how do we go...
View ArticleRemote Web App JavaScript Debugging with JSConsole.com
I’ve written a few posts on remote debugging before, using edge inspect and weinre. They’re definitely very good at the problem they try to solve but today I came across a new Javascript-only remote...
View ArticleStrategies for Select Dropdown Lists Placeholder
HTML5 brings us the placeholder attribute using which we can set default text on an input field or a textarea that goes away when you focus in the field and then write something. What about...
View ArticleRun CoffeeScript Node.js Apps on Heroku
If you’ve written your Node.js app in coffeescript entirely and at the time of deploying on Heroku wondering how heroku would execute your coffee code, then here’s the simple process that you need to...
View ArticleServe Your JavaScript Files Bundled using Browserify with Node Enchilada
If you’re using Browserify to bundle assets in an Express or Connect application then you may want to consider using node-enchilada middleware to faciliate your bundling process. Installation Install...
View Article