npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2024 – Pkg Stats / Ryan Hefner

@bjornpagen/hono-forms

v5.0.0

Published

A form builder and validator library for Hono applications

Downloads

66

Readme

hono-forms

A form builder and validator library for Hono applications

Description

hono-forms is a powerful and flexible library designed to simplify form creation and validation in Hono applications. It provides an intuitive API for building forms, generating HTML, and handling form submissions with built-in validation using Zod.

Features

  • Easy-to-use form builder API
  • Automatic HTML generation for forms
  • Built-in validation using Zod
  • TypeScript support
  • Seamless integration with Hono applications

Installation

npm install hono-forms

Usage

Here's a basic example of how to use hono-forms:

import { Hono } from "hono"
import { FormBuilder } from "hono-forms"

const app = new Hono()

const loginForm = new FormBuilder("/login", "POST")
	.addText("username", "Username", { minLength: 3, maxLength: 20 })
	.addPassword("password", "Password", { minLength: 8 })
	.setSuccessHandler(async (c) => {
		// Handle successful form submission
		return c.text("Login successful")
	})
	.setErrorHandler(async (c, error) => {
		// Handle validation errors
		return c.text(`Login failed: ${error.message}`)
	})
	.build()

app.get("/login", (c) => c.html(loginForm.render()))
loginForm.decorateRoute(app)

export default app

API Reference

FormBuilder

The main class for building forms.

Methods

  • addText(name: string, label: string, options?: TextFieldOptions): FormBuilder
  • addPassword(name: string, label: string, options?: PasswordFieldOptions): FormBuilder
  • addEmail(name: string, label: string, options?: EmailFieldOptions): FormBuilder
  • addNumber(name: string, label: string, options?: NumberFieldOptions): FormBuilder
  • addCheckbox(name: string, label: string, options?: CheckboxFieldOptions): FormBuilder
  • addSelect(name: string, label: string, options: SelectFieldOptions): FormBuilder
  • setSuccessHandler(fn: SuccessHandler): FormBuilder
  • setErrorHandler(fn: ErrorHandler): FormBuilder
  • build(): Form

Form

The result of building a form with FormBuilder.

Methods

  • render(options?: RenderOptions): string
  • decorateRoute(app: Hono): void

Contributing

Contributions are welcome! Please feel free to submit a Pull Request.

License

This project is licensed under the 0BSD License - see the LICENSE file for details.

Author

Bjorn Pagen [email protected]

Links