Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/formio/formio
A Form and Data Management Platform for Progressive Web Applications.
https://github.com/formio/formio
angular angularjs forms nodejs react serverless vanilla-js vanillajs vue
Last synced: 11 days ago
JSON representation
A Form and Data Management Platform for Progressive Web Applications.
- Host: GitHub
- URL: https://github.com/formio/formio
- Owner: formio
- License: osl-3.0
- Created: 2015-10-10T20:41:03.000Z (about 9 years ago)
- Default Branch: master
- Last Pushed: 2024-05-28T10:37:07.000Z (5 months ago)
- Last Synced: 2024-05-29T02:17:07.082Z (5 months ago)
- Topics: angular, angularjs, forms, nodejs, react, serverless, vanilla-js, vanillajs, vue
- Language: JavaScript
- Homepage: https://form.io
- Size: 10.8 MB
- Stars: 1,966
- Watchers: 92
- Forks: 706
- Open Issues: 45
-
Metadata Files:
- Readme: README.md
- Changelog: Changelog.md
- License: LICENSE.txt
- Security: SECURITY.md
Awesome Lists containing this project
- awesome-starred - formio/formio - A Form and Data Management Platform for Progressive Web Applications. (vue)
- jimsghstars - formio/formio - A Form and Data Management Platform for Progressive Web Applications. (JavaScript)
README
[![Join the chat at https://gitter.im/formio/formio](https://badges.gitter.im/formio/formio.svg)](https://gitter.im/formio/formio?utm_source=badge&utm_medium=badge&utm_campaign=pr-badge&utm_content=badge)
[![StackOverflow](https://www.codewake.com/badges/codewake2.svg)](http://stackoverflow.com/tags/formio)A combined form and API platform for Serverless applications
================================
Form.io is a revolutionary combined Form and API platform for Serverless applications. This repository serves as the core Form and API engine for https://form.io. This system allows you to build "serverless" data management applications using a simple drag-and-drop form builder interface. These forms can then easily be embedded within your Angular.js and React applications using the
`````` HTML element.Walkthrough video and tutorial
-------------------
For a walkthrough tutorial on how to use this Open Source platform to build a Serverless application, watch the video [0 to M.E.A.N in 30 minutes](https://www.youtube.com/watch?v=d2gTYkPFhPI)Form Building & Rendering Demo
-------------------
Here is a link to a demo of the Form Building and Form Rendering capability that can be hooked into this API platform.http://codepen.io/travist/full/xVyMjo/
Run with Docker Compose
------------------
The fastest way to run this library locally is to use [Docker](https://docker.com).- [Install Docker](https://docs.docker.com/engine/install/)
- Download and unzip this package to a local directory on your machine.
- Open up your terminal and navigate to the unzipped folder of this library.
- Type the following in your terminal
```
docker-compose up -d
```Or, if you have an older version of the Docker image on your machine
```bash
docker-compose up -d --build
```- Go to the following URL in your browser.
```
http://localhost:3001
```
- Use the following credentials to login.
- **email**: [email protected]
- **password**: CHANGEME
- To change the admin password.
- Once you login, click on the **Admin** resource
- Click **View Data**
- Click on the **[email protected]** row
- Click **Edit Submission**
- Set the password field
- Click **Save Submission**
- Logout- Have fun!
Manual Installation (Node + MongoDB)
-------------------
To get started you will first need the following installed on your machine.- Node.js - https://nodejs.org/en/
- MongoDB - http://docs.mongodb.org/manual/installation/
- On Mac I recommend using Homebrew `brew install mongodb-community`
- On Windows, download and install the MSI package @ https://www.mongodb.org/downloads
- You must then make sure you have MongoDB running by typing `mongod` in your terminal.Running with Node.js
-------------------
You can then download this repository, navigate to the folder in your Terminal, and then type the following.```bash
# install dependencies
yarn
# build the client application
yarn build
# start the server
yarn start
```This will walk you through the installation process. When it is done, you will have a running Form.io management
application running at the following address in your browser.```
http://localhost:3001
```Development
--------------------
To start server with auto restart capability for development simply run this command:
```
npm run start:dev
```Deploy to Hosted Form.io
--------------------
If you wish to deploy all of your forms and resources into the Form.io Hosted platform @ https://portal.form.io, you can do this by using the Form.io CLI command line tool.```
npm install -g formio-cli
```Once you have this tool installed, you will need to follow these steps.
- Create a new project within Form.io
- Create an API Key within this project by going to the **Project Settings | Stage Settings | API Keys**
- Next, you can execute the following command to deploy your local project into Hosted Form.io.```
formio deploy http://localhost:3001 https://{PROJECTNAME}.form.io --dst-key={APIKEY}
```You will need to make sure you replace ```{PROJECTNAME}``` and ```{APIKEY}``` with your new Hosted Form.io project name (found in the API url), as well as the API key that was created in the second step above.
This will then ask you to log into the local Form.io server (which can be provided within the Admin resource), and then after it authenticates, it will export the project and deploy that project to the Form.io hosted form.
License Change (March 8th, 2020)
--------------------
This library is now licensed under the OSL-v3 license, which is a copy-left OSI approved license. Please read the license @ https://opensource.org/licenses/OSL-3.0 for more information. Our goal for the change to OSLv3 from BSD is to ensure that appropriate Attribution is provided when creating proprietary products that leverage or extend this library.Help
--------------------
We will be updating the help guides found @ https://help.form.io as questions arise and also to help you get started with Form.io.Thanks for using Form.io!
The Form.io Team.
Security
=========
If you find and/or think you have found a Security issue, please quietly disclose it to [email protected], and give us
sufficient time to patch the issue before disclosing it publicly.