Activity 34: Test API in POSTMANWhen working with APIs, especially those with numerous endpoints, it can become cumbersome to sift through a long, disorganized list of requests. Grouping related endpoints into subfolders in Postman introduces a layer of structure that makes it easi...Nov 29, 2024·2 min read
Activity 30: HTTP Status Codes1xx (Informational): We used the 1xx HTTP Status code to indicate and ongoing process of the current request, kind of like reassuring that the request is being processed by the back-end and awaiting the result of the request. Use case includes but is...Oct 22, 2024·4 min read
HTTP MethodsGET: This HTTP Verb is used when you want to retrieve data from an API, essentially a literal get, getting data or some data from the API endpoint. Take a look at this example: fetch('https://jsonplaceholder.typicode.com/todos/1') // Getting a todo o...Oct 13, 2024·3 min read
Activity 25: SOLID Principles AngularS - Single Responsibility Principle: What does this mean? According to GeeksForGeeks: Two fundamental ideas are outlined in the Single Responsibility principle. There should only be one cause for a modification in your class or method. There should...Oct 13, 2024·11 min read
Postman Activity #24Write a step by step-by-step guide on how to install Postman and how to use it (PUT, GET, DELETE, POST) To get Postman windows application head to Download Postman | Get Started for Free. Then the website will look like this click the download: Cli...Oct 12, 2024·2 min read
Activity 23: Angular ServicesWhat is Angular Services?: You might need to use features from other classes when developing a smaller component of your system, such as a module or class. For example, in order to conduct backend calls, you could want an HTTP service. A design patte...Oct 5, 2024·38 min read
Activity 15: Angular with TypeScript and data structuresTo apply the learning from your previous lesson on Angular with TypeScript and data structures, you’ll implement an array or list similar to the example provided, using strings or numbers. The goal of this activity is to practice manipulating arrays ...Oct 3, 2024·51 min read