Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/hamzahamidi/json-form-angularjs
This project is an application skeleton for a typical AngularJS web app. It includes a json schema form generator.
https://github.com/hamzahamidi/json-form-angularjs
angular-seed angularjs bootstrap form-generator form-validation forms html javascript json json-schema
Last synced: 24 days ago
JSON representation
This project is an application skeleton for a typical AngularJS web app. It includes a json schema form generator.
- Host: GitHub
- URL: https://github.com/hamzahamidi/json-form-angularjs
- Owner: hamzahamidi
- License: mit
- Created: 2018-01-16T11:04:29.000Z (about 7 years ago)
- Default Branch: master
- Last Pushed: 2018-02-01T10:35:47.000Z (almost 7 years ago)
- Last Synced: 2024-11-10T02:03:54.164Z (3 months ago)
- Topics: angular-seed, angularjs, bootstrap, form-generator, form-validation, forms, html, javascript, json, json-schema
- Language: JavaScript
- Homepage:
- Size: 13.7 KB
- Stars: 1
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# `Json schema form` generator Sample with `angular-seed`
This project is an application skeleton for a typical [AngularJS][angularjs] web app. It includes a json schema form generator.
## Getting Started
To get you started you can simply clone the repository and install the dependencies:
### Prerequisites
You need git to clone the repository. You can get git from [here][git].
You must have Node.js and its package manager (npm) installed. You can get them from [here][node].
### Install Dependencies
The project is preconfigured to automatically run `bower` so we can simply do:
```
npm install
```Behind the scenes this will also call `bower install`. After that, you should find out that you have
two new folders in your project.* `node_modules` - contains the npm packages for the tools we need
* `app/bower_components` - contains the Angular framework files### Run the Application
The simplest way to start the server is:
```
npm start
```Now browse to the app at [`localhost:8000/index.html`][local-app-url].
[angularjs]: https://angularjs.org/
[bower]: http://bower.io/
[git]: https://git-scm.com/
[local-app-url]: http://localhost:8000/index.html
[node]: https://nodejs.org/