Angular πŸ‡ΊπŸ‡¦ - practical notes
1.63K subscribers
1.6K photos
1 file
532 links
Angular - practical notes

This group is for posting practical notes for Angular developers. Mostly all posts are for quick implementation https://t.me/angular_practical_notes (Commenting on posts only in ENG and UA langs here). Welcome!
Download Telegram
πŸ“„ Generate pdf in Angular

#angular #pdf

⚠️ The example is for presentation purposes only and can be refactored.

βœ… Article link

🎁 Code link
Please open Telegram to view this post
VIEW IN TELEGRAM
πŸ‘2
πŸ€“ Cheat Sheet for REST API Design

#info #restApi #guide

REST Principles

Resource-based: REST APIs are designed around resources, which are identified by unique URIs (Uniform Resource Identifiers).
Stateless: Each request from the client to the server must contain all the necessary information for the server to understand and process the request. The server should not rely on storing any client context between requests.
Cacheable: Responses from the server should be labeled as cacheable or non-cacheable, allowing clients to cache responses and improve performance.
Uniform Interface: REST APIs should follow a consistent interface, using standard HTTP methods (GET, POST, PUT, DELETE) to perform operations on resources.
Layered System: REST APIs can be composed of multiple layers, allowing for load balancing, caching, and proxy servers.


βœ… Article link
πŸ‘3
πŸ“„ Async generation and iteration

#js #generators

Async generators was a powerful one from ES9.
πŸ“„ Internet connection monitoring in Angular

#angular #rxjs

⚠️ The example is for presentation purposes only and can be refactored.

βœ… Article link
πŸ‘1
πŸ“„ String.raw

#js #string #raw

When I use String.raw I’m saying: Just give me what I give you. Don’t process anything..
πŸ”₯1
πŸ“„Angular: Creating custom structural directives accepting multiple parameters

#angular #directive

As applications grow in size and as the conditions become more complex, instead of stuffing multiple conditions inside a *ngIf or *ngSwitch, we can opt for creating a more cleaner custom structural directive.


βœ… Article link
πŸ‘1πŸ”₯1