This project was generated with Angular CLI version 9.1.1.
Run ng serve
for a dev server. Navigate to http://localhost:4200/
. The app will automatically reload if you change any of the source files.
Run ng generate component component-name
to generate a new component. You can also use ng generate directive|pipe|service|class|guard|interface|enum|module
.
The mock API module provides an HTTP interceptor that intercepts specific API calls. It can be used by imporint the ApiModule into the AppModule of the application. The below API calls will be intercepted:
GET:
https://localhost:42000/notifications
Expects: Query Parameter username
Returns: Table of user notifications any[]
POST:
https://localhost:42000/login
Expects: Object {usename:string, password:string}
Returns: Object {isAuthenticated: boolean, userDetails: any}
POST:
https://localhost:42000/register
Expects: Object {usename:string, password:string, ...} The object can include any field you seem necessary. It should at leaset contain a username field.
Returns: Object {status: string, message: string}
POST:
https://localhost:42000/sendNotification
Expects: Object {recepient:string, notification:any}
Returns: Object {status: string, message: string}
The mock API uses the browser local host to store the provided data. The above APIs should suffice for the implementation of the basic functionality of this excersise. You can extend the API as needed to implement different more advanced functionality.
Run ng build
to build the project. The build artifacts will be stored in the dist/
directory. Use the --prod
flag for a production build.
Run ng test
to execute the unit tests via Karma.
Run ng e2e
to execute the end-to-end tests via Protractor.
To get more help on the Angular CLI use ng help
or go check out the Angular CLI README.