One of the biggest issues I had when learning Node.js was how to take an application into production. Luckily theres multiple options to make this easier, including IBM Bluemix, a service I've been playing with over the past few weeks. In this post, I'm going to briefly describe what it takes to set up a new Node.js app on Bluemix as well as what it is like to migrate an existing site there.

Ok, so first off, you'll need to sign up for Bluemix. You won't need a credit card and you get a good long trial to play with things. There's a lot of cool stuff at Bluemix, far beyond what I'm talking about today, so the trial will give you time to play around with other features as well.

The very first time you sign in, you're asked to create a "Space". You can think of this as a bucket for your various apps and services. You can name this whatever you want, and you'll just need to do this one time.

dbbm

After you've done that, you can then create an app.

shot1

Next, select Web.

shot2

And then select SDK for Node.js

shot3

For app name, select whatever makes sense.

Screen Shot 2015-03-02 at 13.00.54

Note that the app has to be unique across all of Bluemix. So you may need to prefix the name of your app with something unique. So for example, if you were launching raymondcamden.com there, I'd pick a name that included that. (And yes, the name I used in the screen shot above was taken. I switched to RKCMyApp.

On the next screen, you're given some good information to help you get started.

shot5

Pay particular attention to the "CF Command Line Interface" download. This is the command line tool that you will use to help push updates from your machine to Bluemix. This is a one time install. Unfortunately you can't use npm to do the install, but hopefully in the future those tools will be published there.

You can, if you want, also download the starter app code. That's the code currently being used for your new application. If you are new to Node and want to learn, I'd recommend grabbing the code and playing with it. It uses Express (which in my opinion is one of the best Node libraries out there) but also uses Jade, which is the template framework of the devil. Luckily you can easily switch to a more sensible framework quickly enough.

Go ahead and dismiss that welcome text to view your application console. If you ever want to get back to it, it is available by clicking "Start Coding" in the left hand nav.

Screen Shot 2015-03-02 at 13.09.41

You can see options for adding new instances, increasing memory, and adding new services. You can stop and restart the app as well as seeing a log of recent changes. Finally note the "Routes" section on top. Clicking on the URL there will take you to your application.

Updating and deploying your code is pretty easy. Assuming you've got Node already running locally, and assuming you grabbed the "starter pack" for this new app, open up the files in your editor and at your terminal, get it running by first installing dependancies (npm install) and then running it (node app). By the way, I strongly recommend nodemon while developing.

After you've made your changes, how do you push it up to Bluemix?

First, you have to tell the command line (cf) what API to use. This is a one time setting.

cf api https://api.ng.bluemix.net

Then login.

cf login -u youremail -o yourorg -s yourspace

This login will persist (I'm not sure how long), so you won't have to constantly relogin as you do stuff.

Pushing updates to your app then is trivial:

cf push appname

The update will take about a minute. I'm guessing if you add a bunch of new libraries to your package.json file it may take longer. But once done, you can hit your site and see it changed. You can see my app here, but note that I created this in a trial account that is ending in three days: http://rkcmyapp.mybluemix.net/. In case my trial account has expired, here is what I created in about 20 seconds:

Screen Shot 2015-03-02 at 13.50.57

The command line has a heck of a lot of power (basically everything the site has). You can run cf by itself to see docs at the command line. One option I found recently was cf logs MYAPP. This will begin tailing your logs, from your server, right in your terminal.

Migrating to Bluemix

So all of the previous is related to working on a new Node.js app with Bluemix. What about migrating an existing app?

First, you want to pay particular attention to the Node.js Bluemix documentation on deployment. Bluemix runs a customized version of Node.js. It isn't directly linked to from there, but you can find details about the modifications here: IBM SDK for Node.js Version 1.1.

In the docs linked to above, pay special attention to this portion:

If Procfile is not present, the IBM Node.js buildpack checks for a scripts.start entry in the package.json file. If a start script entry is present, a Procfile is generated automatically. Otherwise, IBM Node.js buildpack checks for a server.js file in the root directory of your application. If a server.js file is found, a Procfile is also generated automatically.

And that's basically it. I copied JavaScript Cookbook to Bluemix just to test and the process was mostly painless. I say "mostly" because I decided to try out Cloudant at the same time and it was a bit more difficult than MongoDB. (But it seems pretty cool. I'll share the updated code later this week.)

Setting up your domain to point to your Bluemix server is also pretty easy, and I was going to write out the process with screen shots, but then I discovered this good video by Ryan Baxter and I figured it didn't make sense to duplicate the effort.

So, what do you think? Have you tried Bluemix yet? If so, did it work ok for you? Let me know in the comments below!