DEV Community

Cover image for Let’s do fabform…
Techsterr
Techsterr

Posted on

 

Let’s do fabform…

What is fabform?

Fabform is a smart form endpoint for developers who are using the forms in the web apps on a day-to-day basis.

Fabform provides an endpoint to play around with their neat APIs.

How to create the fabform API id?

  • Signup to fabform.io

form1

  • Click on Create endpoint

form2

  • Provide a meaningful name to create an endpoint.

form3

And that is it. You are done

How to play around with the fabform API?

Once you create an endpoint, you can simply click on Test Form to try the API.

form4

You will see the input boxes asking for First Name, Last Name and Email to be entered. Once you enter the fields click on the Test Form button.

form5

Once you click on the Test Form button, information is saved corresponding to the API ID that you had created earlier.

form6

Conclusion

Try this new tool to save the form data via their API. It’s easy to use.

gotit

Thanks in advance for reading this article...🚀

I am more than happy to connect with you on

You can also find me on

Top comments (1)

Collapse
 
samuelrivaldo profile image
Samuelrivaldo

Thanks 🙏

An Animated Guide to Node.js Event Loop

Node.js doesn’t stop from running other operations because of Libuv, a C++ library responsible for the event loop and asynchronously handling tasks such as network requests, DNS resolution, file system operations, data encryption, etc.

What happens under the hood when Node.js works on tasks such as database queries? We will explore it by following this piece of code step by step.