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 🙏

© 2025 – Pkg Stats / Ryan Hefner

agile-form

v0.0.456

Published

Reusable form builder with support for (richt-)text, code, selections, numbers, dates and so on.

Readme

Project status

npm npm downloads

build build push package

check types lint test

code coverage

deploy documentation website documentation website

Try out

Use case

Agile-Form is a reusable highly configurable low-code form technology. This Library enables you to decouple a form data specification from its representation.

Features included:

  • Full input agnostic. Use native inputs or web-components providing its internal state via value, invalid or other input properties.
  • Powerful Low-Code-Engine to formulate constraints input or various nested element appearance criteria or determine output schema for rest-endpoints.
  • Conditionally hide and show various html content determined by the current form state.
  • Integrated Re-Captcha v3 (no user challenge) and v2 (with user challenge) fallback mechanism.
  • Powerful dynamic input configuration via input attributes, form attributes, configuration given by external endpoint or url query parameter.
  • Explicit enable-list capability to allow what to allow to configure via url.
  • Fully configurable data transformation and serialisation engine.
  • Dynamic inter-input configurations. Derive input configurations from other dependent input elements or runtime form state.
  • Dynamic output evaluation in specified output html elements.
  • Automatic button interactions for "submit", "reset", "clear" and "truncate".
  • Consolidated form validation state derived by input states.
  • Statically type checked and interface specification via Typescript.
  • Interactive form build support designed for content management systems.

Quick-Start

<!doctype html>
<html>
    <head>
        <meta charset="utf-8">
        <!--Prevent browser caching-->
        <meta http-equiv="cache-control" content="no-cache">
        <meta http-equiv="expires" content="0">
        <meta http-equiv="pragma" content="no-cache">

        <title>playground</title>

        <script
            src="https://cdnjs.cloudflare.com/ajax/libs/webcomponentsjs/2.7.0/webcomponents-bundle.js"
        ></script>
        <script
            src="https://cdnjs.cloudflare.com/ajax/libs/webcomponentsjs/2.7.0/custom-elements-es5-adapter.js"
        ></script>

        <script
            src="https://torben.website/agile-form/data/distributionBundle/index.bundle.js"
        ></script>

        <script>
            agileForm.index.api.register()
        </script>
    </head>
    <body>
        <agile-form
            configuration="{
                inputs: {
                    name: {}
                }
            }"
        >
            <div class="agile-form__status-message"></div>

            <div
                class="agile-form__group"
                name="send-report"
                show-if="submitted"
            >
                Form-Result: <pre>${object.represent(getData())}</pre>
            </div>

            <input name="name" />

            <button type="submit">OK</button>
        </agile-form>
    </body>
<html>