Using the use_npm marker
OpenShift uses the node-supervisor module to run your Node apps, but you can also tell OpenShift to use the npm start
command to run the application. In this recipe, you will learn how to do that.
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 their official website (http://nodejs.org/download/).
How to do it…
Perform the following steps to use the npm start
command to run your applications:
- Open a new command...