The Developer's Glossary: Terms I Wish I Knew Sooner(...and used for years without realizing!)Jan 16, 2024·5 min read·175
Getting Started with GitHub CodespacesGitHub Codespaces is a new tool that allows developers to easily create and manage online development environments in the cloud. With Codespaces, you can quickly spin up a fully-fledged development environment and start coding right away, without wor...Dec 9, 2022·2 min read·26
How to use one to many relations in loopback 4?LoopBack 4 provides support for defining one-to-many relationships between models, allowing you to easily represent the relationship between related entities in your application. To define a one-to-many relationship in LoopBack 4, you can use the @ha...Dec 5, 2022·2 min read·45
How to enable HTTP2 in AWS ELB?To use HTTP/2 on Amazon Web Services (AWS) Elastic Load Balancer (ELB), you will need to create an Application Load Balancer (ALB) and enable HTTP/2 support for it. ALBs are designed to handle traffic at the application layer, and support a range of ...Dec 5, 2022·2 min read·210
Enable HTTP2 for NodeJS Applications using NginxTo use HTTP/2 in a NodeJS application, you will need to use an HTTP/2-enabled web server, such as Nginx or Apache, as a reverse proxy for your NodeJS application. This allows the webserver to handle the HTTP/2 protocol and pass incoming requests to y...Dec 5, 2022·2 min read·203
How to Use HTTP2 in Loopback 4 Applications?HTTP/2 is a major revision of the HTTP network protocol mainly in highlights because it makes our applications faster. Tech giants including Google, Netflix, Twitter already use this protocol. In this post, I'll be showing how you can utilize spdy np...Nov 23, 2022·2 min read·112