
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.
Building a form is as easy as making coffee. :coffee:
Explore the docs »
View Demo
·
Report Bug
·
Request Feature
Hey and welcome. You have started the development with the most advanced and easy form Builder
😎 Using Boomform you don’t need to take care of data structure, fields re-rendering etc…
🚀Boomform will do it for you. You just need to tell the program where your fields should be located and Boomform will automatically create a state for them and follow your fields lifecycle.
Just write the BoomForm component and pass as a child whatever content you want with the Input component.
import React from 'react'
import { BoomForm, Input } from 'boomform'
const App = () => {
return (
<BoomForm>
Simple Input:
<Input id='1' type='text' />
</BoomForm>
)
}
export default App
There you go as easy as that. Now BoomForm is keeping all your state and following the input component lifecycle.
We handle and keep all needed data in store so all you need is to easily import it from store and use wherever you need
For getting store you just need to import useContext hook from react and Context from boomform and simply declare an variable which is equal to useContext with Context attribute
import React, { useContext } from 'react'
import { BoomForm, Input, Context } from 'boomform'
const State = () => {
const store= useContext(Context)
console.log(store)
return null
}
const App = () => {
return (
<BoomForm>
Simple Input:
<Input id='1' type='text' />
<State />
</BoomForm>
)
}
export default App
Store contains all essential attributes like fields, values, touched, errors. You can read more about it here
Also You can check the example for more clarity
![]() | ![]() | ![]() |
|---|---|---|
| Tigran Nazaryan | Tigran Paployan | Sahak Sahakyan |
FAQs
Advanced Form Builder
The npm package boomform receives a total of 67 weekly downloads. As such, boomform popularity was classified as not popular.
We found that boomform 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.