Month: July 2014

  • Better API documentations

    It is a tedious job to write api documentations, and we have been using word documents and excel spreadsheets to create api documents. But they are difficult to follow and search though, what if there was an easier and cleaner way to create API documents? When I started working on my latest project I was […]

  • Building command line apps in Node.js

    Node.js is becoming very popular platform for creating command line utilities, so I am writing this blog post to help you get started. Creating an executable script To create an executable script you will have to add shebang at the top of the script. E.g: #!/usr/bin/env node console.log(“First program”); Assuming you are on a UNIX […]