# formio.js **Repository Path**: wwwlib/formio.js ## Basic Information - **Project Name**: formio.js - **Description**: JavaScript powered Forms with JSON Form Builder - **Primary Language**: JavaScript - **License**: MIT - **Default Branch**: 1.x - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 0 - **Forks**: 0 - **Created**: 2021-03-29 - **Last Updated**: 2021-05-23 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README # formio.js A common library for including Form.io in the browser. ### Usage Creating an instance of Formio is simple, and takes only a path (URL String). The path can be different, depending on the desired output. The Formio instance can also access higher level operations, depending on how granular of a path you start with. ```javascript var a = new Formio(); ``` ### Attach to HTML Form This **Formio** library can also be used to attach an existing HTML Form to the Form.io API service using the ```Formio.form``` method. Let's suppose you have the following HTML form. ```