This project is an application skeleton for a typical AngularJS web app. It includes a json schema form generator.
To get you started you can simply clone the repository and install the dependencies:
You need git to clone the repository. You can get git from here.
You must have Node.js and its package manager (npm) installed. You can get them from here.
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 needapp/bower_components
- contains the Angular framework files
The simplest way to start the server is:
npm start
Now browse to the app at localhost:8000/index.html
.