
Security News
Attackers Are Hunting High-Impact Node.js Maintainers in a Coordinated Social Engineering Campaign
Multiple high-impact npm maintainers confirm they have been targeted in the same social engineering campaign that compromised Axios.
process-reporting-ts
Advanced tools
Dependency management is a critical aspects of any complex project. And doing this manually is less than ideal; the more time you spent on it the less time you have on the other important aspects of the project. Process report Starter were built to address exactly this problem. You get a one-stop-shop for all the functionality that you need to audit your process flow.






npm install process-reporting-ts
import {BpmnElement} from "process-reporting-ts";
@BpmnElement(id = "Event_1anjljr", startEvent = true, keyExpression = "{{ event.PO_NUMBER }}")
public execute(PurchaseOrderEvent event) {
return ...;
}
----
@BpmnElement(id = "Activity_194xhhj")
public execute(PurchaseOrder data) {
return ...;
}
---
@BpmnElement(id = "Event_0byexdn", endEvent = true)
public execute(ProcurementOrder procurementOrder, boolean purchaseOrderExists) {
return ...;
}
import {interceptHandler} from "process-reporting-ts";
function execute(PurchaseOrderEvent data) {
return ...
}
const aopHandler = interceptHandler(execute, {
startEvent: true,
instanceIdExpression: '{{ headers.TX_ID }}',
keyExpression: '{{ data.PO_NUMBER }}'
})
REPORTING_PROCESS_ID: Process_0e2hw2v
REPORTING_PROCESS_SERVER: http://localhost:9090/reporting-service/rest
REPORTING_PROCESS_VERSION: 1.0

npm test
@POST ${reporting.server}/api/report
@BODY {
...@ReportEvent
}
@POST ${reporting.server}/api/process
@BODY {
...@ProcessEvent
}
@POST ${reporting.server}/api/definition/heart-beat
@BODY {
...@HeartBeatEvent
}
@POST ${reporting.server}/api/definition
@BODY {
...@RegisterEvent
}
| Name | Type | Required | Default Value | Description |
|---|---|---|---|---|
| processId | String | true | Unique Process Id | |
| processName | String | true | Process Name | |
| processVersion | String | true | 1.0 | Process Version |
| server | String | true | Process Reporting Service | |
| heartBeatCron | String | false | 0 */2 * ? * * | report heart beat for current service |
| maxEventContentLimit | int | false | 2000 | Max event content size |
| Name | Type | Required | Default Value | Description |
|---|---|---|---|---|
| transactionId | String | true | Unique Transaction Id generated by system | |
| processId | String | true | Unique Process Id | |
| processVersion | String | true | 1.0 | Process Version |
| executionId | String | true | Process Unique execution Id generated by system | |
| errorMessage | String | false | Error Message during execution | |
| status | ReportStatus | false | report status STARTED, COMPLETED, ... | |
| eventTime | LocalDateTime | true | now | Event time generated by system |
| retryCount | int | false | 0 | Retry Count |
| partCount | int | false | 0 | Part Count im Event maxEventContentLimit exceeded |
| Name | Type | Required | Default Value | Description |
|---|---|---|---|---|
| eventTriggeredTime | LocalDateTime | true | Event Triggered time from source system | |
| startBy | String | true | who started the process? | |
| boundedContext | String | true | Bounded Context that process belong to | |
| eventType | String | true | Event Type CREATED, UPDATED, DELETED, ... | |
| eventSource | String | true | Event Source who throw this event? (System-A) | |
| runtimeId | String | true | Runtime Id generated by system | |
| referenceId | String | true | Reference Id |
| Name | Type | Required | Default Value | Description |
|---|---|---|---|---|
| elementId | String | true | BPMN Element unique Id | |
| multipleInstanceIndex | String | true | Task may be executed multiple times | |
| payload | String | true | Event Payload like Json or primitive Objects |
| Name | Type | Required | Default Value | Description |
|---|---|---|---|---|
| processId | String | true | Unique Process Id | |
| processVersion | String | true | 1.0 | Process Version |
| eventTime | LocalDateTime | true | 0 | Event time generated by system |
| Name | Type | Required | Default Value | Description |
|---|---|---|---|---|
| processDiagram | String | true | Process XML Diagram | |
| processId | String | true | Unique Process Id | |
| processVersion | String | true | 1.0 | Process Version |
| boundedContext | String | true | Bounded Context that process belong to | |
| fileName | String | true | Process XML Diagram file name |
| Type | Description |
|---|---|
| QUEUED | Process has been queued |
| STARTED | Process/Task has been started |
| RESTARTED | Process/Task has been restarted |
| COMPLETED | Process/Task has been completed |
| WARNING | Task has ended with warning but Process keep running |
| ERROR | Task has ended with error and Process has been terminated |
MIT (unless noted otherwise)
FAQs
Process reporting with typescript
The npm package process-reporting-ts receives a total of 66 weekly downloads. As such, process-reporting-ts popularity was classified as not popular.
We found that process-reporting-ts demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Security News
Multiple high-impact npm maintainers confirm they have been targeted in the same social engineering campaign that compromised Axios.

Security News
Axios compromise traced to social engineering, showing how attacks on maintainers can bypass controls and expose the broader software supply chain.

Security News
Node.js has paused its bug bounty program after funding ended, removing payouts for vulnerability reports but keeping its security process unchanged.