├── .browserslistrc ├── .editorconfig ├── .gitignore ├── README.md ├── angular.json ├── dist ├── favicon.ico ├── glyphicons-halflings-regular.eot ├── glyphicons-halflings-regular.svg ├── glyphicons-halflings-regular.ttf ├── glyphicons-halflings-regular.woff ├── glyphicons-halflings-regular.woff2 ├── index.html ├── main.js ├── main.js.map ├── polyfills.js ├── polyfills.js.map ├── runtime.js ├── runtime.js.map ├── styles.css ├── styles.css.map ├── vendor.js └── vendor.js.map ├── e2e ├── app.e2e-spec.ts ├── app.po.ts └── tsconfig.e2e.json ├── karma.conf.js ├── package.json ├── protractor.conf.js ├── server.js ├── server ├── data │ ├── books.json │ └── readers.json ├── routes │ ├── books.js │ ├── errors.js │ ├── index.js │ └── readers.js └── views │ ├── error.jade │ ├── index.jade │ └── layout.jade ├── src ├── app │ ├── add-book │ │ ├── add-book.component.html │ │ └── add-book.component.ts │ ├── add-reader │ │ ├── add-reader.component.html │ │ └── add-reader.component.ts │ ├── app-routing.module.ts │ ├── app.component.css │ ├── app.component.html │ ├── app.component.ts │ ├── app.module.ts │ ├── core │ │ ├── badge.service.ts │ │ ├── book-tracker-error-handler.service.ts │ │ ├── data.service.ts │ │ ├── logger.service.ts │ │ └── plain-logger.service.ts │ ├── dashboard │ │ ├── dashboard.component.html │ │ └── dashboard.component.ts │ ├── data.ts │ ├── edit-book │ │ ├── edit-book.component.html │ │ └── edit-book.component.ts │ ├── edit-reader │ │ ├── edit-reader.component.html │ │ └── edit-reader.component.ts │ └── models │ │ ├── book.ts │ │ ├── bookTrackerError.ts │ │ └── reader.ts ├── assets │ └── .gitkeep ├── environments │ ├── environment.prod.ts │ └── environment.ts ├── favicon.ico ├── index.html ├── main.ts ├── polyfills.ts ├── styles.css ├── test.ts └── typings.d.ts ├── tsconfig.app.json ├── tsconfig.json ├── tsconfig.spec.json └── tslint.json /.browserslistrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bricewilson/angular-http-communication/HEAD/.browserslistrc -------------------------------------------------------------------------------- /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bricewilson/angular-http-communication/HEAD/.editorconfig -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bricewilson/angular-http-communication/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bricewilson/angular-http-communication/HEAD/README.md -------------------------------------------------------------------------------- /angular.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bricewilson/angular-http-communication/HEAD/angular.json -------------------------------------------------------------------------------- /dist/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bricewilson/angular-http-communication/HEAD/dist/favicon.ico -------------------------------------------------------------------------------- /dist/glyphicons-halflings-regular.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bricewilson/angular-http-communication/HEAD/dist/glyphicons-halflings-regular.eot -------------------------------------------------------------------------------- /dist/glyphicons-halflings-regular.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bricewilson/angular-http-communication/HEAD/dist/glyphicons-halflings-regular.svg -------------------------------------------------------------------------------- /dist/glyphicons-halflings-regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bricewilson/angular-http-communication/HEAD/dist/glyphicons-halflings-regular.ttf -------------------------------------------------------------------------------- /dist/glyphicons-halflings-regular.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bricewilson/angular-http-communication/HEAD/dist/glyphicons-halflings-regular.woff -------------------------------------------------------------------------------- /dist/glyphicons-halflings-regular.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bricewilson/angular-http-communication/HEAD/dist/glyphicons-halflings-regular.woff2 -------------------------------------------------------------------------------- /dist/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bricewilson/angular-http-communication/HEAD/dist/index.html -------------------------------------------------------------------------------- /dist/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bricewilson/angular-http-communication/HEAD/dist/main.js -------------------------------------------------------------------------------- /dist/main.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bricewilson/angular-http-communication/HEAD/dist/main.js.map -------------------------------------------------------------------------------- /dist/polyfills.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bricewilson/angular-http-communication/HEAD/dist/polyfills.js -------------------------------------------------------------------------------- /dist/polyfills.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bricewilson/angular-http-communication/HEAD/dist/polyfills.js.map -------------------------------------------------------------------------------- /dist/runtime.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bricewilson/angular-http-communication/HEAD/dist/runtime.js -------------------------------------------------------------------------------- /dist/runtime.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bricewilson/angular-http-communication/HEAD/dist/runtime.js.map -------------------------------------------------------------------------------- /dist/styles.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bricewilson/angular-http-communication/HEAD/dist/styles.css -------------------------------------------------------------------------------- /dist/styles.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bricewilson/angular-http-communication/HEAD/dist/styles.css.map -------------------------------------------------------------------------------- /dist/vendor.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bricewilson/angular-http-communication/HEAD/dist/vendor.js -------------------------------------------------------------------------------- /dist/vendor.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bricewilson/angular-http-communication/HEAD/dist/vendor.js.map -------------------------------------------------------------------------------- /e2e/app.e2e-spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bricewilson/angular-http-communication/HEAD/e2e/app.e2e-spec.ts -------------------------------------------------------------------------------- /e2e/app.po.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bricewilson/angular-http-communication/HEAD/e2e/app.po.ts -------------------------------------------------------------------------------- /e2e/tsconfig.e2e.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bricewilson/angular-http-communication/HEAD/e2e/tsconfig.e2e.json -------------------------------------------------------------------------------- /karma.conf.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bricewilson/angular-http-communication/HEAD/karma.conf.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bricewilson/angular-http-communication/HEAD/package.json -------------------------------------------------------------------------------- /protractor.conf.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bricewilson/angular-http-communication/HEAD/protractor.conf.js -------------------------------------------------------------------------------- /server.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bricewilson/angular-http-communication/HEAD/server.js -------------------------------------------------------------------------------- /server/data/books.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bricewilson/angular-http-communication/HEAD/server/data/books.json -------------------------------------------------------------------------------- /server/data/readers.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bricewilson/angular-http-communication/HEAD/server/data/readers.json -------------------------------------------------------------------------------- /server/routes/books.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bricewilson/angular-http-communication/HEAD/server/routes/books.js -------------------------------------------------------------------------------- /server/routes/errors.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bricewilson/angular-http-communication/HEAD/server/routes/errors.js -------------------------------------------------------------------------------- /server/routes/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bricewilson/angular-http-communication/HEAD/server/routes/index.js -------------------------------------------------------------------------------- /server/routes/readers.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bricewilson/angular-http-communication/HEAD/server/routes/readers.js -------------------------------------------------------------------------------- /server/views/error.jade: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bricewilson/angular-http-communication/HEAD/server/views/error.jade -------------------------------------------------------------------------------- /server/views/index.jade: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bricewilson/angular-http-communication/HEAD/server/views/index.jade -------------------------------------------------------------------------------- /server/views/layout.jade: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bricewilson/angular-http-communication/HEAD/server/views/layout.jade -------------------------------------------------------------------------------- /src/app/add-book/add-book.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bricewilson/angular-http-communication/HEAD/src/app/add-book/add-book.component.html -------------------------------------------------------------------------------- /src/app/add-book/add-book.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bricewilson/angular-http-communication/HEAD/src/app/add-book/add-book.component.ts -------------------------------------------------------------------------------- /src/app/add-reader/add-reader.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bricewilson/angular-http-communication/HEAD/src/app/add-reader/add-reader.component.html -------------------------------------------------------------------------------- /src/app/add-reader/add-reader.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bricewilson/angular-http-communication/HEAD/src/app/add-reader/add-reader.component.ts -------------------------------------------------------------------------------- /src/app/app-routing.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bricewilson/angular-http-communication/HEAD/src/app/app-routing.module.ts -------------------------------------------------------------------------------- /src/app/app.component.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/app/app.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bricewilson/angular-http-communication/HEAD/src/app/app.component.html -------------------------------------------------------------------------------- /src/app/app.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bricewilson/angular-http-communication/HEAD/src/app/app.component.ts -------------------------------------------------------------------------------- /src/app/app.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bricewilson/angular-http-communication/HEAD/src/app/app.module.ts -------------------------------------------------------------------------------- /src/app/core/badge.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bricewilson/angular-http-communication/HEAD/src/app/core/badge.service.ts -------------------------------------------------------------------------------- /src/app/core/book-tracker-error-handler.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bricewilson/angular-http-communication/HEAD/src/app/core/book-tracker-error-handler.service.ts -------------------------------------------------------------------------------- /src/app/core/data.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bricewilson/angular-http-communication/HEAD/src/app/core/data.service.ts -------------------------------------------------------------------------------- /src/app/core/logger.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bricewilson/angular-http-communication/HEAD/src/app/core/logger.service.ts -------------------------------------------------------------------------------- /src/app/core/plain-logger.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bricewilson/angular-http-communication/HEAD/src/app/core/plain-logger.service.ts -------------------------------------------------------------------------------- /src/app/dashboard/dashboard.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bricewilson/angular-http-communication/HEAD/src/app/dashboard/dashboard.component.html -------------------------------------------------------------------------------- /src/app/dashboard/dashboard.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bricewilson/angular-http-communication/HEAD/src/app/dashboard/dashboard.component.ts -------------------------------------------------------------------------------- /src/app/data.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bricewilson/angular-http-communication/HEAD/src/app/data.ts -------------------------------------------------------------------------------- /src/app/edit-book/edit-book.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bricewilson/angular-http-communication/HEAD/src/app/edit-book/edit-book.component.html -------------------------------------------------------------------------------- /src/app/edit-book/edit-book.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bricewilson/angular-http-communication/HEAD/src/app/edit-book/edit-book.component.ts -------------------------------------------------------------------------------- /src/app/edit-reader/edit-reader.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bricewilson/angular-http-communication/HEAD/src/app/edit-reader/edit-reader.component.html -------------------------------------------------------------------------------- /src/app/edit-reader/edit-reader.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bricewilson/angular-http-communication/HEAD/src/app/edit-reader/edit-reader.component.ts -------------------------------------------------------------------------------- /src/app/models/book.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bricewilson/angular-http-communication/HEAD/src/app/models/book.ts -------------------------------------------------------------------------------- /src/app/models/bookTrackerError.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bricewilson/angular-http-communication/HEAD/src/app/models/bookTrackerError.ts -------------------------------------------------------------------------------- /src/app/models/reader.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bricewilson/angular-http-communication/HEAD/src/app/models/reader.ts -------------------------------------------------------------------------------- /src/assets/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/environments/environment.prod.ts: -------------------------------------------------------------------------------- 1 | export const environment = { 2 | production: true 3 | }; 4 | -------------------------------------------------------------------------------- /src/environments/environment.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bricewilson/angular-http-communication/HEAD/src/environments/environment.ts -------------------------------------------------------------------------------- /src/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bricewilson/angular-http-communication/HEAD/src/favicon.ico -------------------------------------------------------------------------------- /src/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bricewilson/angular-http-communication/HEAD/src/index.html -------------------------------------------------------------------------------- /src/main.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bricewilson/angular-http-communication/HEAD/src/main.ts -------------------------------------------------------------------------------- /src/polyfills.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bricewilson/angular-http-communication/HEAD/src/polyfills.ts -------------------------------------------------------------------------------- /src/styles.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bricewilson/angular-http-communication/HEAD/src/test.ts -------------------------------------------------------------------------------- /src/typings.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bricewilson/angular-http-communication/HEAD/src/typings.d.ts -------------------------------------------------------------------------------- /tsconfig.app.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bricewilson/angular-http-communication/HEAD/tsconfig.app.json -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bricewilson/angular-http-communication/HEAD/tsconfig.json -------------------------------------------------------------------------------- /tsconfig.spec.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bricewilson/angular-http-communication/HEAD/tsconfig.spec.json -------------------------------------------------------------------------------- /tslint.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bricewilson/angular-http-communication/HEAD/tslint.json --------------------------------------------------------------------------------