X Tutup
# Angular2 Tutorial This repository is an example application for angular2 tutorial. [![Build Status][travis-image]][travis-url] You can try out [Demo page](http://micropost.hana053.com/). ## Getting Started Prepare backend app. ``` git clone https://github.com/springboot-angular2-tutorial/boot-app.git cd boot-app mvn spring-boot:run ``` Serve frontend app by webpack-dev-server. ``` npm install npm install -g webpack webpack-dev-server karma-cli npm run server open http://localhost:8080 ``` Testing. ``` npm test ``` ## Tutorial Under construction... ## Credits * [Rails tutorial](https://github.com/railstutorial/sample_app_rails_4) * [angular2-webpack-starter](https://github.com/AngularClass/angular2-webpack-starter) * [angular2-seed](https://github.com/mgechev/angular2-seed) ## License [MIT](/LICENSE) [travis-url]: https://travis-ci.org/springboot-angular2-tutorial/angular2-app [travis-image]: https://travis-ci.org/springboot-angular2-tutorial/angular2-app.svg
X Tutup