Research
Security News
Quasar RAT Disguised as an npm Package for Detecting Vulnerabilities in Ethereum Smart Contracts
Socket researchers uncover a malicious npm package posing as a tool for detecting vulnerabilities in Etherium smart contracts.
An isomorphic, schema based form generator that can be used in the client, on the server, or even to pre-compile forms in the build phase. This is the core library that is used to register form types. Support will soon be added for pluggable "processors" that can be loaded to create types for different use cases and different frameworks.
###Example
var isoForm = new IsoForm();
// To use, register a type with a name and a template function
isoForm.addItemType('input', function (itemData) {
return '<input id="'+itemData.id+'">';
});
// Or types can be registered with strings instead
isoForm.addGroupType('group', '<div>', '</div>');
var form = isoForm.build({
type:'group',
items: [
{ type: 'input', id: 'test' }
]
});
// form.isValidSchema == true;
// form.html == '<div><input id="test"></div>';
Warning: This is still very much a work in progress.
FAQs
Generate form html, js, and json-schema all from one master schema.
We found that iso-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.
Research
Security News
Socket researchers uncover a malicious npm package posing as a tool for detecting vulnerabilities in Etherium smart contracts.
Security News
Research
A supply chain attack on Rspack's npm packages injected cryptomining malware, potentially impacting thousands of developers.
Research
Security News
Socket researchers discovered a malware campaign on npm delivering the Skuld infostealer via typosquatted packages, exposing sensitive data.