Build a Simple Angular 2 CRUD application using http
1. Clone the application
git clone https://github.com/scbushan05/angular-2-crud.git2. Intall Angular CLI globally
npm install -g @angular/cli3. Intall dependencies/npm modules
Go to the project directory and execute the following command from the terminal
intall npm4. Change the REST API URL's
In the book.service.ts change the REST API URL's, i have created backend project using Spring REST, you can find it here https://github.com/scbushan05/book-api
5. Build and run the app
ng serve --openThe app will open in the default browser with http://localhost:4200/.