formMOD VS tutim

Compare formMOD vs tutim and see what are their differences.

SurveyJS - Open-Source JSON Form Builder to Create Dynamic Forms Right in Your App
With SurveyJS form UI libraries, you can build and style forms in a fully-integrated drag & drop form builder, render them in your JS app, and store form submission data in any backend, inc. PHP, ASP.NET Core, and Node.js.
surveyjs.io
featured
InfluxDB - Power Real-Time Data Analytics at Scale
Get real-time insights from all types of time series data with InfluxDB. Ingest, query, and analyze billions of data points in real-time with unbounded cardinality.
www.influxdata.com
featured
formMOD tutim
14 16
37 250
- 3.2%
0.7 7.1
about 1 year ago 7 months ago
TypeScript TypeScript
MIT License MIT License
The number of mentions indicates the total number of mentions that we've tracked plus the number of user suggested alternatives.
Stars - the number of stars that a project has on GitHub. Growth - month over month growth in stars.
Activity is a relative number indicating how actively a project is being developed. Recent commits have higher weight than older ones.
For example, an activity of 9.0 indicates that a project is amongst the top 10% of the most actively developed projects that we are tracking.

formMOD

Posts with mentions or reviews of formMOD. We have used some of these posts to build our list of alternatives and similar projects. The last one was on 2022-04-11.
  • Create React forms in a few minutes.
    1 project | /r/Frontend | 11 Apr 2022
    2 projects | /r/javascript | 11 Apr 2022
    2 projects | /r/react | 11 Apr 2022
    2 projects | /r/reactjs | 11 Apr 2022
    2 projects | dev.to | 11 Apr 2022
    https://github.com/nickorsk2017/formMOD What do you think about this system? Thank you!
  • Why you need a new library for forms on React?
    2 projects | /r/reactjs | 11 Apr 2022
    import { Form, Field } from ‘react-final-form’; … … ( Bio {meta.touched && meta.error && {meta.error}} )} /> …

    What issue??

    1. If you currently have a project you need to redoing all your UI components to specific syntax.
    2. Until today a developers have millions UI libraries.Why can't you just install it and use it?You must make a wrapper components, adapt logic to use library.

    We calculated time for redoing a large app.

    It need about from few months to fixing bugs, changing syntax…

    For a business it crazy huge.

    Example 3

    import { useForm } from ‘react-hook-form’;
    …
    const { register, handleSubmit, errors } = useForm();
    …
    return (
     
        …
        
        {errors.lastname && 'Last name is required.’}
        …
      
    );
    

    What issue?

    
    

    Problem is specific syntax inside UI component.

    At first glance short syntax is good.

    But you can do it easy without libraries.

    const props = helper({…});
    
    
    

    Solution

    When you need to think about a form library at first moment?

    Yes, when you need a validations.

    A form library only must know about data.

    For example, that a data row is valid or not.

    - Not about your app structure.

    - Not about JSX or UI components inside.

    - Not about UI logic.

    A form system must be abstract. It's like a smart useState().

    You should make your app easy, just connect your components to data.

    How it can look.

    After long analyse we decided to make our library.

    For creating your forms you need two simple steps:

    1. Define a scheme which describes validation and some properties of form data.
    2. Connect your scheme via methods to your UI components.

    Scheme

    // scheme.ts
    export default {
     valid: null,
     formValue: {
        first_name: "",
        last_name: "",
     },
     rules: {
        full_name: [
            ["empty", "please enter your full name"]
        ],
        email: [
            ["empty", "please enter your email"],
            ["email", "is not email"],
        ]
     }
    }
    

    Form

    //MyForm.ts
    import {useFormMod} from "formmod";
    
    export const MyForm = () => {
    const {setValue, getValue, getError, validate} = useFormMod(
        FORM_SCHEME
    );
    return (
    
        …
         setValue("full_name", value)}
        />
        …
    
    );
    

    Full documentation :

    https://doc.formmod.org/

    **WE RECOMMEND TO USE LAPTOP OR DESKTOP DEVICE FOR READING DOCUMENTATION.

    Advantages:

    • No dependencies. This is the power of simple work.This form system don’t know about your components, JSX, your app, store…You can use it with any UI components. No longer need to make wrappers components, understanding JSX syntax.Just use it with anything.
    • Easy system, easy code. It’s very simple.
    • Save time. Just connect properties to your components.

    Important

    We have finished our library recently.

    Until today we have 151 commits, 14 releases in our repository and this is just the beginning of the work.

    We started work with community, fixing documentation.

    We need your support, just set a star in gitHub here:

    https://github.com/nickorsk2017/formMOD

    Other features

    Also our library can work with optional, group, composite components.

    It has described work with CRUD, store (about mutable data) and more.

    It is absolutely free (MIT).

    We are working for world community.

    We want to make development easer for everybody.

    Thank you for reading!

    2 projects | /r/u_formmod | 11 Apr 2022

    {meta.touched && meta.error && {meta.error}}

    )}

    />

    What problem??

    1. If you currently have a project you need to redoing all your UI components to specific syntax.
    2. Until today a developers have millions UI libraries.
      Why can't you just install it and use it?
      You must make a wrapper components, adapt logic to use library.

    We calculated time for redoing a large app.

    It need about from few months to fixing bugs, changing syntax…

    For a business it crazy huge.

    Example 3

    import { useForm } from ‘react-hook-form’;

    const { register, handleSubmit, errors } = useForm();

    return (

    {errors.lastname && 'Last name is required.’}

    );

    What problem?

    A specific syntax inside UI component.

    At first glance short syntax is good.

    But you can do it easy without libraries.

    const props = helper({…});

    Solution

    When you think about form library at first moment?

    Yes, when you need a validations.

    The form library only must know about data.

    For example, that a data row is valid or not.

    - Not about your app structure.

    - Not about JSX or UI components inside.

    - Not about UI logic.

    You should make your app easy, just connect your components to data.

    How it can look.

    After long analyse we decided to make our library.

    For creating your forms you need two simple steps:

    1. Define a scheme which describes validation and some properties of form data.

    2. Connect your scheme via methods to your UI components.

    Scheme

    // scheme.ts
    export default {

    valid: null,

    formValue: {

    first_name: "",

    last_name: "",

    },

    rules: {

    first_name: [

    ["empty", "please write your first name"]

    ],

    last_name: [

    ["empty", "please write your last name"]

    ]

    }

    }

    Form

    //MyForm.ts

    import {useFormMod} from "formmod";

    export const MyForm = () => {

    const {setValue, getValue, getError, validate} = useFormMod(

    FORM_SCHEME

    );

    return (

    label={"First name"}

    value={getValue("first_name")}

    error={getError("first_name")}

    onChange={(value: string) => setValue("first_name", value)}

    />

    );

    Advantages:

    • No dependencies. This is the power of simple work.
      This form system don’t know about your components, JSX, your app, store…
      You can use it with any UI components.
      No longer need to make wrappers components, understanding JSX syntax.
      Just use it with anything.
    • Easy system, easy code. It’s very simple.
    • Save time. Just connect properties to your components.

    Important

    We have finished our library recently.

    Until today we have 151 commits, 14 releases in our repository and this is just the beginning of the work.

    We started work with community, fixing documentation.

    We very need your support, just set a star in gitHub here:

    https://github.com/nickorsk2017/formMOD

    Full documentation for Heroes:

    https://doc.formmod.org/

    Other features

    Also our library can work with optional, group, composite components.

    It has described working with CRUD, store, data and more.

    It is absolutely free.

    We are working for world community.

    We want to make development easer for everybody.

    Thank you for reading!

  • React.js. Complex react forms are easy. The FormMOD is new library for react forms.
    1 project | /r/reactjs | 21 Mar 2022
    We really need your support, set a star on github here: https://github.com/nickorsk2017/formMOD

tutim

Posts with mentions or reviews of tutim. We have used some of these posts to build our list of alternatives and similar projects. The last one was on 2023-05-03.

What are some alternatives?

When comparing formMOD and tutim you can also consider the following projects:

react-bare-forms - A bare minimal React form library for quick & simple forms.

CASE - Typescript lightweight Backend-as-a-Service ✨

under-control - 📝 🐕 Are you losing sanity every time you need to make a form? Are you have enough of all antipatterns and cursed frameworks in React? Screw that! Treat all forms and inputs as a recursive composable control!

FormsLab - 😊📊 Form builder for anonymous surveys, polls, and collecting feedback. Experience management solution.

ajv-ts - First-class ajv typescript JSON-schema builder inspired from Zod

react-happy-form - Simple, easy to use, powerful form state manage tools.

Awesome-Repo-Template - An awesome repo template packed with tons of tools & more to kick-start your next project / repo!

DataLayerTemplate - Template I use to create a datalayer to handle CRUD functionality

react-cool-form - 😎 📋 React hooks for forms state and validation, less code more performant.

createform - The ReactJS form library

ai-component-generator

sequential-workflow-designer - Customizable no-code component for building flow-based programming applications. 0 external dependencies.