
Security News
Official Go SDK for MCP in Development, Stable Release Expected in August
The official Go SDK for the Model Context Protocol is in development, with a stable, production-ready release expected by August 2025.
react-simple-form-builder
Advanced tools
git clone https://github.com/evheniy/react-simple-form-builder.git
cd react-simple-form-builder
npm i
npm run server
npm i -S react-simple-form-builder
import builder from 'react-simple-form-builder';
const Label = builder.components.Label;
ReactDOM.render(
<Label>label</Label>,
document.getElementById('root')
);
const List = builder.components.List;
eactDOM.render(
<List items={[
<Label id="1">text1</Label>,
<Label id="2">text2</Label>,
]} />,
document.getElementById('root')
);
const Button = builder.components.Button;
ReactDOM.render(
<Button value={'button'} />,
document.getElementById('root')
);
const Text = builder.components.Text;
ReactDOM.render(
<Text value={'text'} />,
document.getElementById('root')
);
const Submit = builder.components.Submit;
ReactDOM.render(
<Submit value={'submit'} />,
document.getElementById('root')
);
const Checkbox = builder.components.Checkbox;
ReactDOM.render(
<Label children={[
<Checkbox value={'checkbox'} />,
'checkbox',
]} />,
document.getElementById('root')
);
const Form = builder.components.Form;
ReactDOM.render(
<Form method="GET" action="/" children={<List items={[
<Label id="1">label</Label>,
<Text value="5" id="5" />,
<Label children={[
<Checkbox value={'checkbox'} />,
'checkbox'
]} text="test" id="4" />,
<Button value={'button'} id="2" />,
<Submit value={'submit'} id="3" />,
]} />} />,
document.getElementById('root')
);
npm t
FAQs
React simple form builder
The npm package react-simple-form-builder receives a total of 3 weekly downloads. As such, react-simple-form-builder popularity was classified as not popular.
We found that react-simple-form-builder 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
The official Go SDK for the Model Context Protocol is in development, with a stable, production-ready release expected by August 2025.
Security News
New research reveals that LLMs often fake understanding, passing benchmarks but failing to apply concepts or stay internally consistent.
Security News
Django has updated its security policies to reject AI-generated vulnerability reports that include fabricated or unverifiable content.