featuredArticle.welcome
featuredArticle.topics.indieHacking · featuredArticle.topics.coding · featuredArticle.topics.marketing

How to Start Developing Browser Extensions
While developing browser extensions uses frontend technologies, the APIs and working methods are different from web pages, so using development frameworks can significantly improve efficiency. Browser
latestArticles

Why SSR is Better Than SSG
Why SSR Alone is Sufficient SSR (server-side rendering) refers to rendering pages on-demand at runtime on the server, then sending them to the frontend. SSG (server-side generation) refers to pre-comp

Setting Up Proxy in NodeJS
Recently, a project required NodeJS to use a proxy. I initially thought it would be a simple configuration, but it turned out to be quite challenging. NodeJS doesn't read system proxies by default, an

Pitfalls of Configuring Axios Proxy Server
Axios requests have a proxy property that can be used for proxying in Node.js. However, it's not perfect and will fail when proxying HTTPS requests, so it's best not to use it. import axios from "ax

How HTTPS Connections Work Through Proxy Servers: The CONNECT Method
When using an HTTP proxy to connect to the network, the proxy server forwards client requests. However, since HTTPS requires a TLS handshake first, the proxy server cannot directly forward the request