Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/chnapy/tabbouleh-sample-rjsf

Tabbouleh sample with react-jsonschema-form form generator
https://github.com/chnapy/tabbouleh-sample-rjsf

Last synced: 10 days ago
JSON representation

Tabbouleh sample with react-jsonschema-form form generator

Awesome Lists containing this project

README

        

# Tabbouleh sample with react-jsonschema-form form generator

Basic sample which combine [tabbouleh](https://github.com/Chnapy/tabbouleh) (JSON Schema generation) with [react-jsonschema-form](https://github.com/mozilla-services/react-jsonschema-form) (form generation).

[**__Preview here__**](https://chnapy.github.io/tabbouleh-sample-rjsf)

# Getting started

```
npm install
```

```
npm start
```

# How it works

Simplified steps:

```typescript
// generate the UserData schema
const schema = Tabbouleh.generateJSONSchema(UserData);

// render the form
ReactDOM.render(, document.getElementById('root'));
```

# Alternatives

See also [uniforms](https://github.com/vazco/uniforms).