
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.
@delinternet/react-automate-form
Advanced tools
import ValidatorAdapter from './validator';
import controllers from './Components/Controllers';
import renderViews from './Components/RenderViews';
import FormManager, { container, CommonInputAdapter as adapter } from '@delinternet/react-automate-form';
// ================================
// EXTENDING THE FORM LIBRARY
// ================================
container.registerValidator(new ValidatorAdapter());
// Registering our custom Controllers views
for (const [key, RenderView] of Object.entries(renderViews)) {
container.registerViewRenders(key, RenderView);
}
// Registering our controllers | The library is agnostic to the components
for (const [key, Controller] of Object.entries(controllers)) {
container.registerController(key, adapter(Controller));
}
// Export our customized instance of the Library
export default FormManager;
import FormManager from './form';
import { validationRulesBuilder } from '@joseaburt/json-driven-validator';
const controllersConfigs = [
{
type: 'text',
name: 'name',
label: 'Name',
placeholder: 'Name',
responsive: { xs: 12, sm: 6, md: 6, lg: 4 },
validationRules: validationRulesBuilder({
type: 'string',
constrains: [
{
method: 'email',
params: {
message: 'First Name is required',
},
},
],
}),
},
];
const defaultState = { name: '--' };
const formManager = new FormManager({ formIndex: 'example', defaultState });
const controllers = formManager.initControllers(controllersConfigs);
class AppFormListener {
onErrors({ errors, manager }) {}
onStateChange({ value, previous, manager }) {}
onNameStateChange({ value, previous, manager }) {}
onNameError({ givenValue, isValid, reason, manager }) {}
}
formManager.setControllersHandlers(new AppFormListener());
export default function App() {
return <div>{controllers}</div>;
}
FAQs
.
We found that @delinternet/react-automate-form demonstrated a not healthy version release cadence and project activity because the last version was released 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.