Research
Security News
Malicious npm Packages Inject SSH Backdoors via Typosquatted Libraries
Socket’s threat research team has detected six malicious npm packages typosquatting popular libraries to insert SSH backdoors.
@manojadams/metaforms-core
Advanced tools
A framework for building react form libraries. Create your react form components and use this framework for adding form behavior using JSON-based schema.
This library reads the JSON-based schema and lays out beautiful forms. It acts as a base for creating a dynamic form library.
This is a class containing declarations of basic form controls as well as some other advanced form controls.
Contains declarations of basic form grouping controls.
This is another type of form grouping that contains declarations to implement stepper functionalities for your form.
This library contains abstract declarations and requires the user to implement his own core components.
email
controlclass MyFormControl extends CoreFormControl {
/**
* Implement email
*/
email() {
return (
<div className="form-group">
<label forName="exampleInputEmail1">Email address</label>
<input
type="email"
className="form-control"
id="exampleInputEmail1"
aria-describedby="emailHelp"
placeholder="Enter email"
onChange={this.handleChange}
>
</div>
)
}
}
phone
controlclass MyFormControl extends CoreFormControl {
/**
* Implement phone
*/
phone() {
return (
<div className="form-group">
<label forName="phone">Your Phone</label>
<input
type="tel"
className="form-control"
id="phone" aria-describedby="phoneHelp"
placeholder="Enter your phone"
onChange={this.handleChange}
>
</div>
)
}
}
npm install --save @manojadams/metaform-core
import MetaformRenderer from "@manojadams/metaforms-core";
import React from "react";
import FormControl from "./forms/FormControl"; // your form control implementation
import FormGroup from "./forms/FormGroup"; // your form group implementation
import { FormStepper } from "./forms/FormStepper"; // your form stepper implementation
class FormRenderer extends React.Component {
constructor(props: IFormRenderer) {
super(props);
}
render() {
return (
<MetaformRenderer
{...this.props}
baseFormControl={FormControl}
baseFormGroup={FormGroup}
baseFormStepper={FormStepper}
/>
)
}
}
export default FormRenderer;
MIT © manojadams
FAQs
React Library for rendering dynamic forms from json schema
The npm package @manojadams/metaforms-core receives a total of 321 weekly downloads. As such, @manojadams/metaforms-core popularity was classified as not popular.
We found that @manojadams/metaforms-core demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 0 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’s threat research team has detected six malicious npm packages typosquatting popular libraries to insert SSH backdoors.
Security News
MITRE's 2024 CWE Top 25 highlights critical software vulnerabilities like XSS, SQL Injection, and CSRF, reflecting shifts due to a refined ranking methodology.
Security News
In this segment of the Risky Business podcast, Feross Aboukhadijeh and Patrick Gray discuss the challenges of tracking malware discovered in open source softare.