![Create React App Officially Deprecated Amid React 19 Compatibility Issues](https://cdn.sanity.io/images/cgdhsj6q/production/04fa08cf844d798abc0e1a6391c129363cc7e2ab-1024x1024.webp?w=400&fit=max&auto=format)
Security News
Create React App Officially Deprecated Amid React 19 Compatibility Issues
Create React App is officially deprecated due to React 19 issues and lack of maintenance—developers should switch to Vite or other modern alternatives.
astro-form-actions
Advanced tools
Use progressive form enhancement and handle form submissions in Astro. This library only uses native Web APIs and can be used in any runtime.
npm i astro-form-actions
pnpm add astro-form-actions
yarn add astro-form-actions
Documentation: https://github.com/pilcrowOnPaper/astro-form-actions/wiki
Demo: https://astro-form-actions.vercel.app
Need a library to parse your forms? Check out my other project Adria!
This library is made up of 2 parts: server side and client side.
handleFormSubmission
will handle all POST requests to the page.
// inside .astro page
import {
handleFormSubmission,
reject,
resolve,
redirect
} from "astro-form-actions";
const { response, error, inputValues, body } = await handleFormSubmission(
Astro,
async (formData) => {
const message = formData.get("message");
if (typeof notes !== "string")
return reject(400, {
message: "bad input"
});
// do some stuff
return resolve({
success: true
});
}
);
if (response) return response;
You can use a regular HTML form:
<form method="post">
<input name="message" />
<input type="submit" />
</form>
Or, by using component frameworks like Solid (or just even vanilla JS), you can use submitForm
to make the submission.
import { submitForm } from "astro-form-actions/client";
export default () => {
return (
<form
method="post"
onSubmit={(e) => {
e.preventDefault();
const { error } = await submitForm<
{
success: boolean;
},
{
message: string;
}
>(e.currentTarget);
}}
>
<input name="message" />
<input type="submit" />
</form>
);
};
Parts of the library is from https://github.com/nachomazzara/parse-multipart-data.
FAQs
Forms in Astro made easy
We found that astro-form-actions 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
Create React App is officially deprecated due to React 19 issues and lack of maintenance—developers should switch to Vite or other modern alternatives.
Security News
Oracle seeks to dismiss fraud claims in the JavaScript trademark dispute, delaying the case and avoiding questions about its right to the name.
Security News
The Linux Foundation is warning open source developers that compliance with global sanctions is mandatory, highlighting legal risks and restrictions on contributions.