JSONForms extends the AngularJS view model approach by eliminating the need to write HTML templates in order to create forms by leveraging the capabilities of JSON and JSON schema.
- Install JSON Forms via
npm install jsonforms
and require it viarequire('jsonforms')
- Annotate the element, where you want to place a form, with a
jsf
class attribute. - Add
jsonforms
as a dependency to your AngularJS app:
var myApp = angular.module('myApp', ['jsonforms', ...])
- Load
jsonforms.css
in the head section:
<link rel="stylesheet" type="text/css" href="node_modules/jsonforms/dist/jsonforms.css">
- Render a form with the
jsonforms
element:
The simplest example looks like this, where schema
, uiSchema
and data
are
properties of a aliased controller named vm
:
<div class="jsf">
<jsonforms schema="vm.schema" uischema="vm.uiSchema" data="vm.data"></jsonforms>
</div>
- Styling JSON Forms ships with predefined styles based on Bootstrap and Material Design, see the Styling section of the documentation.
For documentation, examples and more information, please see jsonforms.org.
- Install node.js(version > 4.x.x)
- Clone this repository
- Install dependencies:
npm install
- Generate typings:
npm run typings-install
- Normal Build:
npm run build
(runstslint
as well) - Bootstrap Build:
npm run build-bootstrap
- Material Build:
npm run build-material
- Test:
npm run test
- Watch:
npm run dev
(ordev-bootstrap
,dev-material
), point your browser tohttp://localhost:8080/webpack-dev-server/
JSONForms ships with a couple of examples. The examples' dependencies are managed via bower, hence you'll first need to run the following commands from the project root directory:
cd examples
../node_modules/.bin/bower install
Also make sure that you have followed the instructions for the first time setup in case you haven't done so already.
Now you start the example by running npm run dev
and then pointing
your browser to http://localhost:8080
.
Note that for running the placeholder
example you'll first need to start
jsonplaceholder which provides
a fake REST API. You can do so via
npm run start-placeholder
The JSONForms project is build and tested via Travis. Coverage is documented by Coveralls.
- Locally login as one of the (npm) owners of the package (npm doc)
- Make sure your workspace looks exactly the way you want to release it. (Files specified in .npmignore are normally ignored by npm, but this functionality is buggy. Therefore to be sure you should still remove all unwanted files before deploying.)
- Run either
npm run publish-patch
,npm run publish-minor
ornpm run publish-major
.
The script does the following:
- Build all JSONForms alternatives
- Execute tests
- Increase version in package.json
- Commit version bump to the current branch
- Checkout a new temporary deploy-branch
- Commit
dist/jsonforms.js
file - Create a new version tag
- Push the version tag to 'upstream'
- Release the workspace to npmjs
If any of the steps fail the script will abort. If the script was successful you should create a pull-request with the version bump commit to 'upstream'.
The JSONForms project is licensed under the MIT License. See the LICENSE file for more information.
Our current roadmap is available here.