Ffroilaninfroilanimnida.hashnode.dev·Nov 29, 2024 · 2 min readActivity 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...00
Ffroilaninfroilanimnida.hashnode.dev·Nov 20, 2024 · 4 min readAngular Recipe Gridimport { Component, OnInit } from '@angular/core'; import { Recipe } from '../recipe.interface'; import { RecipeService } from '../recipe.service'; import { inject } from '@angular/core'; import { NgFor } from '@angular/common'; @Component({ sel...00
Ffroilaninfroilanimnida.hashnode.dev·Nov 20, 2024 · 5 min readAngular Library GridCode: // book.interface.ts export interface Book { id: number; title: string; genre: string; author: string; year: number; imageUrl: string; description: string; rating: number; } // book.service.ts import { Injectabl...00
Ffroilaninfroilanimnida.hashnode.dev·Nov 19, 2024 · 5 min readAngular E-commerce Product ListProductComponent Documentation Overview The ProductComponent is an Angular standalone component that displays a list of products with cart and wishlist functionality. Component Decorator import { Component, inject, OnInit } from '@angular/core'; impo...00
Ffroilaninfroilanimnida.hashnode.dev·Oct 22, 2024 · 4 min readActivity 28: Research Rest APIWhat is an RESTful API: According to AWS: RESTful API: Two computer systems can securely communicate information over the internet by using a RESTful API interface. To carry out different duties, the majority of business apps must interface with bot...00