Home
Sihan Li
Cancel

Configuration Service

配置系统 - Configuration System 丑话说前面, 整个配置系统, 我私认为属于VSCode众多大系统中top10甚至top5的复杂系统了. 业务本身复杂繁琐,代码量也很多,有些部分代码我自己没有chatGPT4.0的帮忙的话,读起来够呛。 在我读了基本框架之后, 感觉这个系统是随着项目开发, 一步一步添加新的功能, 最终成为了现在这个样子. 很多地方的...

Take a Glance at Electron

What is Electron Electron is an open-source framework that allows developers to create cross-platform desktop applications using web technologies like JavaScript, HTML, and CSS. It achieve...

Microservice-Driven Architecture

What is a Microservice? Microservice-driven architecture, or simply microservices, is an architectural style that structures an application as a collection of loosely coupled services. Each ...

Introduction to Event

Background In the context of a large-scale software application, determining the method of communication across different components is extremely crucial. As a result, VSCode’s team choose Event-Dr...

Resource Management - Dispose Pattern

Background JavaScript utilizes Garbage Collection (GC) to manage memory. As a result, we don’t have direct control over resource management—we can’t tell when a resource is actually released once ...