π€ Cheat Sheet for REST API Design
#info #restApi #guide
β Article link
#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
π Difference Between Native Federation, Module Federation, and Single-Spa
#info #module_federation #native_federation
β Article link
#info #module_federation #native_federation
β Article link
π2
#angular #info #guide
Not having an architecture (or a plan) at all!
What is unfortunately often forgotten is that if we want to be able to keep moving fast also one year after we started our project, then we also need to make sure that our project doesnβt become an overconnected ball of mud or to use more technical term, we donβt end up with a tangled dependency graph with lotβs of circular dependenciesβ¦
One of the best way to know if this is your case is the constant feeling of being stuck in a spider web when trying to fix one thing leads you to a journey of changing half of the codebase, adding condition after condition just to make it work just this one more time.
Not thinking about eager and lazy parts of the app
Typical example is when we have some feature specific service which manages some kind of feature specific state and then we realize that it would be really great to be able to get that state also in some service in the eager core.
In that case, itβs very easy to just import and inject the feature service in the core service and overlook this eager / lazy boundary violation (or just miss it during the PR review). The outcome will be that the service (and everything else it imports) will suddenly become part of the eager Javascript bundle!
This is bad for performance and for architecture as well as weβre introducing dependencies between parts which should have been isolated (or only depend on each other in one direction, eg feature can consume core, but not the other way around!
Not lazy loading ALL the features
Another common offender that tends to happen also in reasonably architected projects is that even though they mostly embraced the eager / lazy split and have most of the logic implemented as the lazy loaded features, for some reason, some of the features are βforgottenββ¦
The best way to remedy this is to always implement everything including the first (original feature) as a first lazy loaded feature.
Using more than one way to achieve the same
Letβs take routing as an example, currently there are at least 4 ways to do it
β eager route to a component with component
β lazy route to a component with `loadComponent`
β lazy route to a module with `loadChildren`
β lazy route to routes based feature (feature-x.routes.ts) with `loadChildren`
In this case, we most likely want to pick one and stick with it.
I would personally recommend to always define lazy route with the routes based feature with loadChildren which is the most modern and flexible way of doing things. Then, in case our lazy feature contains sub navigation, we can lazy load additional components with loadComponent .
Focusing on DRY instead of ISOLATION
The DRY is a principle aimed at reducing the code repetition in the codebase, replacing duplicate code with abstractions.
If the same information or logic is repeated in multiple places, any new requirement which necessitates a change in how it should work will require us to change the logic consistently in all these places which can lead to errors and inconsistencies.
The argument weβre trying to make is that in frontend codebases itβs better to have some amount of duplicated code (e.g. in multiple lazy features) because that will allow them to evolve independently as the requirements change, and they do change!
Madge
Madge is a developer tool for generating a visual graph of your module dependencies, finding circular dependencies, and giving you other useful info
β madge npm docs
Not using standalone components
Using standalone components instead of NgModules means that our dependency graph becomes more granular and this higher resolution allows us to gain better insight of how each parts of app relate to each other and discover more issues!
Besides that, it allows lazy features to cherry pick only those UI components which is actually needs instead of depending on all of them, as was often the case when applications grouped and exposed them in commonly used SharedModule !
β Article link
Please open Telegram to view this post
VIEW IN TELEGRAM
β€3π1
Please open Telegram to view this post
VIEW IN TELEGRAM
Please open Telegram to view this post
VIEW IN TELEGRAM
π2
#css #info #guide
The Core Challenge of Scaling CSS
As applications evolve, managing styling consistently becomes even harder. Web projects often face issues like:
β Inconsistent UI elements: Without a unified system, different pages or features can drift apart visually.
β Hard-to-maintain styles: Styling becomes scattered and unorganized, making future changes tedious and error-prone.
β Difficulty in updating themes or branding: Modifying a color or spacing may involve updating hundreds of individual styles.
β Article link
Please open Telegram to view this post
VIEW IN TELEGRAM
Please open Telegram to view this post
VIEW IN TELEGRAM
π4
#angular #react #info
Before we start the comparison, letβs briefly define Angular and React:
- Angular: A full-fledged front-end framework developed and maintained by Google. It is a complete solution for building large-scale applications, offering built-in tools for everything from routing to state management.
- React: A JavaScript library created by Facebook for building UI components. Unlike Angular, React focuses on the view layer only, offering flexibility to developers by allowing them to choose other libraries and tools for state management, routing, and more.
β Article link
Please open Telegram to view this post
VIEW IN TELEGRAM
Please open Telegram to view this post
VIEW IN TELEGRAM
π3
Please open Telegram to view this post
VIEW IN TELEGRAM
Please open Telegram to view this post
VIEW IN TELEGRAM
π3
#css #guide #info
This is a list of the new changes (more details below):
β Changes to attr() function: so it can be used with any attribute and in any CSS property (not only on content).
β calc-size() function: use intrinsic values such as auto or min-content in calculations.
β New first-valid() function to avoid issues with custom properties with invalid values.
β New *-mix() family of functions with a new notation for ratios.
β New *-progress() family of functions to calculate the progress ratio between a range or within a media or container.
β Randomization with new random() and random-item() functions, to return random values from a range or list (finally!)
β New sibling-count() and sibling-index() functions that provide integer values to operate depending on the order and size.
β New toggle() function for styling nested elements easily cycling over a list of values.
β New functional notation for arguments with comma-separated lists of values, to avoid ambiguity with the comma separating the arguments.
β New URL modifiers to provide more control over url() requests.
β Extension of the position type to allow flow-relative values.
β Article link
Please open Telegram to view this post
VIEW IN TELEGRAM
Please open Telegram to view this post
VIEW IN TELEGRAM
π5
π1