npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2024 – Pkg Stats / Ryan Hefner

nodejs-dataworks

v0.1.2

Published

nodejs library for DataWorks apis

Downloads

6

Readme

Introduction

nodejs-dataworks is a module library for IBM DataWorks APIs. At this time, only the data load APIs are covered by this library, but more DataWorks APIs will be covered over time including "Address Cleansing" and "Data Profiling" apis.
As a reference, The Simple Data Pipe example app is using nodejs-dataworks to programmatically create activities for moving data from Cloudant to DashDB. (See the documentation here.)

This post provides documentation on how to use our DataWorks client library for Node.js.

How to use the library

var dataworks = require("dataworks").dataload;
var dwInstance = new dataworks();
...

Let's take a deeper look at what's happening behind the var dwInstance = new dataworks(); code.

By default the library will automatically try to find a service bound to the application using a regular expression that contains the word "dataworks" in its name. If you know the service you want to bind to, you can always pass it as an option object like so:

var dwInstance = new dataworks({dwServiceName: "myDataWorksServiceName"});

Once the DataWorks service is found in Bluemix's VCAP_SERVICES environment variable, the library will extract the credential information (url, userid, password) and use it in all subsequent API calls.

Note:

####listActivities API#### All these APIs use the callback pattern, i.e., you pass a callback function that takes an error object and an array of activities as arguments.

dwInstance.listActivities( function( err, activities ){
   if ( err ){
	return console.log( "Unable to get list of activities: %s", err );
   }
   console.log( "activities: %s", require('util').inspect( activities ) );
});
...

####getActivity API#### Query an activity by its id:

dwInstance.getActivity( activityId, function( err, activity ){
   if ( err ){
	return console.log( "Unable to get activity for id %s : %s", activityId, err );
   }
   console.log( "activity: %s", require('util').inspect( activity ) );
});
...

####getActivityByName API#### Query an activity by its name.

Note: return value can be null.

dwInstance.getActivityByName( activityName, function( err, activity ){
   if ( err ){
	return console.log( "Unable to get activity for name %s : %s", activityName, err );
   }
   console.log( "activity: %s", require('util').inspect( activity ) );
});
...

####deleteActivity API#### Delete an activity by its ID:

dwInstance.deleteActivity( activityId, function( err ){
   if ( err ){
	return console.log( "Unable to delete activity for id %s : %s", activityId, err );
   }
   console.log( "activity successfully deleted" );
});
...

####createActivity API#### Create a new activity by specifying the source and target connection.

Note: this library uses a factory to create connections. At this time, only Cloudant and DashDB are supported.

  var srcConnection = dwInstance.newConnection("cloudant");  //Create a source connection for cloudant
  srcConnection.setDbName( "sf_campaign__c" );   //Set the cloudant db name for the source connection
  srcConnection.addTable( {
     name: "sf_campaign__c".toUpperCase()
  });   //Specify the table
  var targetConnection = dwInstance.newConnection("dashDB"); //Create a target connection for dashDB
  targetConnection.setSourceConnection( srcConnection ); //Simply set the associated source connection
  dwInstance.createActivity({
	name: "test",
	desc: "Test instance",
	srcConnection: srcConnection,
	targetConnection: targetConnection
  }, function( err, activity ){
	if ( err ){
		return console.log("Unable to create activity: %s", err);
	}
	console.log("SuccessFully created a new activity: %s", util.inspect( activity, { showHidden: true, depth: null } ) );
  });
...

####runActivity API#### Run an activity by its ID:

dwInstance.runActivity( activityId, function( err, activityRun ){
   if ( err ){
	return console.log( "Unable to run activity for id %s : %s", activityId, err );
   }
   console.log( "activity successfully run: %s", require('util').inspect( activityRun ) );
});
...

####monitorActivityRun API#### Monitor an activity run by its ID:

  dwInstance.runActivity( activityId, function( err, activityRun ){
   if ( err ){
	return console.log( "Unable to run activity for id %s : %s", activityId, err );
   }
		
   var monitor = function(){
       dwInstance.monitorActivityRun( activityId, activityRun.id, function( err, activityRun ){
            if ( err ){
	        return console.log("Error retrieving activity run details %s", err );
	    }
	    if ( dwInstance.isFinished( activityRun.status ) ){   //Query whether the activity is finished
		 return console.log("ActivityRun complete");
	    }
            console.log( "Activity Running: %s", util.inspect( activityRun, { showHidden: true, depth: null } ));
	    setTimeout( monitor, 5000 ); //Poll again in 5s
	})
   };
   console.log("SuccessFully submitted a activity for running. Waiting for results...: %s", util.inspect( activityRun, { showHidden: true, depth: null } ) );
   setTimeout( monitor, 5000 );
});
...

####listActivityRuns API#### List all activity runs for a specified activity:

dwInstance.listActivityRuns( activityId, function( err, activityRuns ){
   if ( err ){
	return console.log( "Unable to get activity runs for activity id %s : %s", activityId, err );
   }
   console.log( "List of activity runs: %s", require('util').inspect( activityRuns ) );
});
...

####deleteActivityRun API#### Delete an activity run by its ID:

dwInstance.deleteActivityRun( activityId, activityRunId, function( err ){
   if ( err ){
	return console.log( "Unable to delete activity run for id %s and activity id %s : %s", activityRunId, activityId, err );
   }
   console.log( "Successfully deleted activity Run id %s", activityRunId );
});
...