Creating your first Node.js application
In this recipe, you will learn how to create your first OpenShift Node.js application using the rhc command-line tool. After understanding the template application created by OpenShift, you will write a Hello World
Node.js application using Node's HTTP module.
Getting ready
To complete this recipe, you will need the rhc command-line client installed on your machine. Please refer to the Installing the OpenShift rhc command-line client recipe in Chapter 1, Getting Started with OpenShift, for details. This application will consume one gear, so if you don't have an extra gear available for this recipe, use the rhc delete-app <app_name> --confirm
command to delete an existing application. To run this application on your local machine, you will need Node installed on your machine. You can get the latest installer of Node.js for your operating system from the official website, http://nodejs.org/download/.
How to do it…
Perform the following...