dashdb-nodejs-helloworld is a simple implementation of an app running on Node.js runtime demonstrating how to connect Node.js applications to dashDB service on Bluemix.
You can bind a dashDB service instance to an app running on Node.js runtime in Bluemix and then work with the data in the dashDB database. The Bluemix Node.js runtime will automatically lay down native driver dependencies when you have a dashDB Service instance bound to your app. The sample illustrated here uses express and jade node modules.
For issues that you encounter with this service, go to Get help in the Bluemix developer community.
-
If you do not already have a Bluemix account, sign up here
-
Download and install the Cloud Foundry CLI tool
-
Clone the app to your local environment from your terminal using the following command:
git clone https://github.com/IBM-Bluemix/dashdb-nodejs-helloworld.git
-
cdinto this newly created directory -
Open the
manifest.ymlfile and change thehostvalue to something unique.
The host you choose will determinate the subdomain of your application's URL: <host>.mybluemix.net
- Connect to Bluemix in the command line tool and follow the prompts to log in.
$ cf api https://api.ng.bluemix.net
$ cf login
- Create a dashDB service instance in Bluemix.
$ cf create-service dashDB Entry dashDB-nodesample
- Push the app to Bluemix.
$ cf push
And voila! You now have your very own instance of an app running Node.js runtime and connecting and querying the dashDB service on Bluemix.
-
If you do not already have a Bluemix account, sign up here
-
If you have not already, download node.js and install it on your local machine.
-
Clone the app to your local environment from your terminal using the following command:
git clone https://github.com/IBM-Bluemix/dashdb-nodejs-helloworld.git
-
cdinto this newly created directory -
Install the required npm and bower packages using the following command
npm install
- Create a dashDB service using your Bluemix account and replace the corresponding credentials in your app.js file
db: "BLUDB",
hostname: "xxxx",
port: 50000,
username: "xxx",
password: "xxx"
- Start your app locally with the following command
node app.js
This command will start your application. When your app has started, your console will print that your Express server listening on port 3000.
The primary purpose of this demo is to provide a sample implementation of an app running on Node.js runtime demonstrating how to connect Node.js applications to dashDB service on Bluemix. The relevant code for this integration is located within the app.js file.
The following components are required to connect dashDB service from a Node.js application. The are all described in further detail in this topic.
- package.json
- Node.js program
- A dashDB service instance
####package.json The package.json contains information about your app and its dependencies. It is used by npm tool to install, update, remove and manage the node modules you need. Add the ibm_db dependency to your package.json:
{
"engines": {
"node": "0.10.33"
},
"name": "dashdbnodesample",
"version": "0.0.1",
"description": "A sample node app for connecting to dashDB service on Bluemix",
"dependencies": {
"cf-deployment-tracker-client": "0.0.8",
"express": "3.5.x",
"ibm_db": "0.0.19",
"jade": "1.11.0"
},
"scripts": {
"start": "node app.js"
},
"repository": {
"type": "git",
"url": "https://github.com/IBM-Bluemix/dashdb-nodejs-helloworld.git"
}
}
###Connecting to dashDB from Node.js code
In your Node.js code, parse the VCAP_SERVICES environment variable to retrieve the database connection information and connect to the database as shown in the following example.
For more information on the structure of the VCAP_SERVICES environment variable see Getting Started with dashDB Service
var app = express();
// all environments
app.set('port', process.env.PORT || 3000);
...
var db2;
var env = JSON.parse(process.env.VCAP_SERVICES);
db2 = env['dashDB'][0].credentials;
var connString = "DRIVER={DB2};DATABASE=" + db2.db + ";UID=" + db2.username + ";PWD=" + db2.password + ";HOSTNAME=" + db2.hostname + ";port=" + db2.port;
app.get('/', routes.listSysTables(ibmdb,connString));
In the routes/index.js file, open the connection using the connection string and query the database as follows.
exports.listSysTables = function(ibmdb,connString) {
return function(req, res) {
ibmdb.open(connString, function(err, conn) {
if (err ) {
res.send("error occurred " + err.message);
}
else {
conn.query("SELECT FIRST_NAME, LAST_NAME, EMAIL, WORK_PHONE from GOSALESHR.employee FETCH FIRST 10 ROWS ONLY", function(err, tables, moreResultSets) {
if ( !err ) {
res.render('tablelist', {
"tablelist" : tables
});
} else {
res.send("error occurred " + err.message);
}
/*
Close the connection to the database
param 1: The callback function to execute on completion of close function.
*/
conn.close(function(){
console.log("Connection Closed");
});
});
}
} );
}
}
The primary source of debugging information for your Bluemix app is the logs. To see them, run the following command using the Cloud Foundry CLI:
$ cf logs dashdbnodesample --recent
For more detailed information on troubleshooting your application, see the Troubleshooting section in the Bluemix documentation.
We are more than happy to accept external contributions to this project, be it in the form of issues or pull requests. If you find a bug or want an enhancement to be added to the sample application, please report via the issues section or even better, fork the project and submit a pull request with your fix. Pull requests will be evaulated on an individual basis based on value add to the sample application.
The dashdb-nodejs-helloworld sample web application includes code to track deployments to Bluemix and other Cloud Foundry platforms. The following information is sent to a Deployment Tracker service on each deployment:
- Application Name (application_name)
- Space ID (space_id)
- Application Version (application_version)
- Application URIs (application_uris)
This data is collected from the VCAP_APPLICATION environment variable in IBM Bluemix and other Cloud Foundry platforms. This data is used by IBM to track metrics around deployments of sample applications to IBM Bluemix. Only deployments of sample applications that include code to ping the Deployment Tracker service will be tracked.
Deployment tracking can be disabled by removing require("cf-deployment-tracker-client").track(); from the beginning of the app.js file.
###Related Links
