https://github.com/camunda/camunda-bpm-examples/tree/master/sdk-js/nodejs
と私はcamundaエンジン、残りの部分に接続し、次のようにcamunda APIを呼び出すことができます。
var CamSDK = require('camunda-bpm-sdk-js');
var camClient = new CamSDK.Client({
mock: false,
// the following URL does not need authentication,
// but the tradeof is that some requests will fail
// e.g.: some filters use the reference to the user performing the request
apiUri: 'http://localhost:8080/engine-rest'
});
var processDefinitionService = new camClient.resource('process-definition');
var processInstanceService = new camClient.resource('process-instance');
var filterService = new camClient.resource('filter');
var deploymentService = new camClient.resource('deployment');
が、私はあなたがnodejsを使用したい場合は、BPMN上記のような単純なプロジェクトを実施し、それを実行して、私は、このシナリオ