
Research
/Security News
10 npm Typosquatted Packages Deploy Multi-Stage Credential Harvester
Socket researchers found 10 typosquatted npm packages that auto-run on install, show fake CAPTCHAs, fingerprint by IP, and deploy a credential stealer.
@camunda/rpa-integration
Advanced tools
[!Info] This repository is still a work in progress
UI components for Editing and testing RPA files within Camunda.
npm install @camunda/rpa-integration
The Linrary exports RPAEditor. This is the main entry point and creates a monaco
editor for RPA files along with a properties panel for metdata in the given container.
The Editor also handles the state for additional UI components. You can add a workerConfig
to define which RPA worker instance should be used for testing.
import { RPAEditor } from '@camunda/rpa-integration';
const editor = RPACodeEditor({
container: editorContainer,
propertiesPanel: {
container: propertiesContainer
},
workerConfig: {
host: 'localhost',
port: 36227
},
value: `{}`
});
The editor exposes an eventBus. You can listen to edits or configuration changes. The following events are exposed
model.changed: The file was changedconfig.changed: The Runtime config was changeddialog.run.open: Open the run Dialog (see Testing and Configuration UI)dialog.config.open: Open the configuration Dialog (see Testing and Configuration UI)Additionally, the editor exposes React Components you can use to render debugging UI. They
expect an editor instance as prop.
Dialogs expect to be rendered in a container and have an additional onSubmit callback. This
is used when the form is submitted. You can use this callback to close a modal or similar element.
Example:
import React, { useEffect, useRef, useState } from 'react';
import { RunDialog } from '@camunda/rpa-integration';
function TestButton(props) {
const editor = props.editor;
const eventBus = editor.eventBus;
const [ isOpen, setIsOpen ] = useState(false);
const buttonRef = useRef();
useEffect(() => {
const cb = () => {
setIsOpen(true);
};
eventBus.on('dialog.run.open', cb);
return () => {
eventBus.off('dialog.run.open', cb);
};
}, [ eventBus ]);
const onClose = () => {
setIsOpen(false);
};
return <>
<button
ref={ buttonRef }
onClick={ () => setIsOpen(!isOpen) }
>
Test RPA Script
</button>
{ isOpen &&
<div style={ { padding: '12px' } }>
<RunDialog
editor={ editor }
onSubmit={ onClose }
/>
</div>
}
</>;
}
FAQs
> [!Info] > This repository is still a work in progress
We found that @camunda/rpa-integration demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 15 open source maintainers 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.

Research
/Security News
Socket researchers found 10 typosquatted npm packages that auto-run on install, show fake CAPTCHAs, fingerprint by IP, and deploy a credential stealer.

Product
Socket Firewall Enterprise is now available with flexible deployment, configurable policies, and expanded language support.

Security News
Open source dashboard CNAPulse tracks CVE Numbering Authorities’ publishing activity, highlighting trends and transparency across the CVE ecosystem.