e2ebridge / bpmn

BPMN 2.0 execution engine
466 stars 138 forks source link

Sample project #26

Open NEzzat opened 8 years ago

NEzzat commented 8 years ago

Hi all and happy holidays,

I am new to node, I can't not understand how to start a new bpmn project in node, and how to start a new process and how to Handel in the handlers, can anyone help me with sample bpmn project in node or point me to documentation explaining the above.

Thanks and appreciate in advance

ghost commented 8 years ago

AMA: Ask me just now I created a robust WF using this Library Engine. It works like charm.

NEzzat commented 8 years ago

Dear abksharma2,

It will help me, if you can share how to start the BPMN server, and start a process, Start task, end task. or point me to some documentation explaining the above.

Thanks

Nasser Ezzat

Sent from Windows Mail

From: abksharma2 Sent: ‎Monday‎, ‎December‎ ‎28‎, ‎2015 ‎10‎:‎14‎ ‎AM To: e2ebridge/bpmn Cc: NEzzat

AMA: Ask me just now I created a robust WF using this Library Engine. It works like charm.

— Reply to this email directly or view it on GitHub.

ghost commented 8 years ago

PLS USE BELOW DOC... https://github.com/e2ebridge/bpmn

you can start with https://github.com/e2ebridge/bpmn/tree/master/examples/processes task.js / task.bpmn / server.js file with below code

//-------add process definition file-------- //required bpmn for the workflow engine var bpmnEngine = require('bpmn');

// using Process manager to create process of one instance global.manager = new bpmnEngine.ProcessManager({ persistencyOptions: { uri: settings.mongoconnectionstring } });

//--- EOD OF changes done for BPMN workflow engine --- global.manager.addBpmnFilePath($ROOT_DIR + "/" + settings.file); //-----end of BPMN specific changes--------

NEzzat commented 8 years ago

Thank you, will read it, thanks a million On Mon, Dec 28, 2015 at 12:05 PM abksharma2 notifications@github.com wrote:

you can start with https://github.com/e2ebridge/bpmn/tree/master/examples/processes task.js / task.bpmn / server.js file with below code

— Reply to this email directly or view it on GitHub https://github.com/e2ebridge/bpmn/issues/26#issuecomment-167533149.