
Security News
CVE Volume Surges Past 48,000 in 2025 as WordPress Plugin Ecosystem Drives Growth
CVE disclosures hit a record 48,185 in 2025, driven largely by vulnerabilities in third-party WordPress plugins.
A lightweight form submission and management SDK with optional React/Next.js helpers.
Formiq SDK allows frontend developers to submit forms to the Formiq backend without building a server. This MVP supports API key-based submissions per project.
# npm
npm install formiq-sdk
# yarn
yarn add formiq-sdk
# bun
bun add formiq-sdk
import Formiq from 'formiq-sdk';
const formiq = new Formiq('YOUR_API_KEY', 'YOUR_PROJECT_ID');
const formData = {
name: 'John Doe',
email: 'john@example.com',
message: 'Hello FormIQ!'
};
formiq.submitForm(formData)
.then(response => console.log('Form submitted:', response))
.catch(error => console.error('Submission failed:', error));
import React, { useState } from 'react';
import Formiq from 'formiq-sdk';
import { useFormiq } from 'formiq-sdk/react';
const formiq = new Formiq('YOUR_API_KEY', 'YOUR_PROJECT_ID');
function ContactForm() {
const [formData, setFormData] = useState({ name: '', email: '', message: '' });
const [status, setStatus] = useState('');
const { submit, loading, error } = useFormiq();
const handleSubmit = async (e) => {
e.preventDefault();
try {
const res = await submit(formData);
setStatus('Form submitted successfully!');
console.log(res);
} catch (err) {
setStatus('Submission failed. Please try again.');
console.error(err);
}
};
return (
<form onSubmit={handleSubmit}>
<input
type="text"
placeholder="Name"
value={formData.name}
onChange={(e) => setFormData({ ...formData, name: e.target.value })}
required
/>
<input
type="email"
placeholder="Email"
value={formData.email}
onChange={(e) => setFormData({ ...formData, email: e.target.value })}
required
/>
<textarea
placeholder="Message"
value={formData.message}
onChange={(e) => setFormData({ ...formData, message: e.target.value })}
required
/>
<button type="submit" disabled={loading}>Send</button>
{status && <p>{status}</p>}
{error && <p style={{color: 'red'}}>Error: {error.message}</p>}
</form>
);
}
export default ContactForm;
submit calls return a promise..catch() (JavaScript) or try/catch (React/async) to handle submission failures.Formiq SDK - simple, secure form submissions for frontend projects.
FAQs
A lightweight form submission and management SDK with optional React/Next.js helpers.
We found that formiq-sdk 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
CVE disclosures hit a record 48,185 in 2025, driven largely by vulnerabilities in third-party WordPress plugins.

Security News
Socket CEO Feross Aboukhadijeh joins Insecure Agents to discuss CVE remediation and why supply chain attacks require a different security approach.

Security News
Tailwind Labs laid off 75% of its engineering team after revenue dropped 80%, as LLMs redirect traffic away from documentation where developers discover paid products.