
Security News
Axios Supply Chain Attack Reaches OpenAI macOS Signing Pipeline, Forces Certificate Rotation
OpenAI rotated macOS signing certificates after a malicious Axios package reached its CI pipeline in a broader software supply chain attack.
@empla/reforms
Advanced tools
You can try it online
# Install before
npm i vue@next bootstrap@next
# Install reforms
npm i @empla/reforms
<reforms-form>
<reforms-input type="string" name="firstname" label="First Name" validation="required|string" />
<reforms-input type="string" name="lastname" label="Last Name" validation="required|string" />
<reforms-input type="html" name="notes" label="Notes" />
<button type="submit" class="btn btn-success">
Submit
</button>
</reforms-form>
It creates form:

You can create form with schema:
const schema = {
firstname: {
type: 'string',
attrs: {
validation: 'required',
label: 'First name'
}
},
lastname: {
type: 'string',
attrs: {
validation: 'required',
label: 'Last name'
}
},
notes: {
type: 'html',
attrs: {
label: 'Notes',
}
}
};
And pass it to form:
<reforms-form :schema="schema">
<button type="submit" class="btn btn-success">
Submit
</button>
</reforms-form>
https://reforms.js.org/documentation/
Copyright © 2021 EMPLA GROUP, LLP
Made with ❤️ by Malik Zharykov️
FAQs
Vue 3 and Bootstrap 5 forms generator
The npm package @empla/reforms receives a total of 11 weekly downloads. As such, @empla/reforms popularity was classified as not popular.
We found that @empla/reforms 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
OpenAI rotated macOS signing certificates after a malicious Axios package reached its CI pipeline in a broader software supply chain attack.

Security News
Open source is under attack because of how much value it creates. It has been the foundation of every major software innovation for the last three decades. This is not the time to walk away from it.

Security News
Socket CEO Feross Aboukhadijeh breaks down how North Korea hijacked Axios and what it means for the future of software supply chain security.