
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.
@neanic/forms
Advanced tools
Neanic Forms is a powerful TypeScript library for building and managing forms with Vue.js. It provides a flexible and extensible architecture for handling form state, validation, and rendering.
To install Neanic Forms, use npm or yarn:
npm install @neanic/forms
# or
yarn add @neanic/forms
Here's a basic example of how to use Neanic Forms to create a simple form:
import { Form, Val } from "@neanic/forms";
// Define your form structure
const form = Form.object({
firstName: Form.string([Val.isRequired]),
lastName: Form.string(),
age: Form.number(),
});
Neanic Forms offers a variety of form-related classes and utilities. Here is a quick overview:
Form: The main factory for creating form controls.FormObject, FormArray, FormString, FormNumber, FormBoolean: Classes representing different types of form entries.Val: A collection of standard validators.formDefaultsForVue: A utility to set default templates for rendering Vue components based on form entry types.This project is licensed under the ISC License – see the LICENSE file for details. Developed by Neanic.
FAQs
The Neanic Forms library
We found that @neanic/forms demonstrated a healthy version release cadence and project activity because the last version was released less than 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.