search
HomeBackend DevelopmentGolangMigrating NestJS Microservices with TypeScript to Go: A Week of Discoveries

Migrando Microservicios de NestJS con TypeScript a Go: Una Semana de Descubrimientos

Migrating NestJS Microservices with TypeScript to Go: A Week of Discoveries

In the last week, I have immersed myself in the world of Go with the aim of migrating our microservices developed in NestJS with TypeScript. This journey has been an intense exercise in unlearning certain paradigms and adopting others, understanding the fundamental differences between these two development ecosystems.

Our Architecture in NestJS

In our stack with NestJS, we manage microservices connected to PostgreSQL and Redis databases. We implement various communication strategies between microservices:

  1. Communication by Events: We use Pub/Sub for subscriptions and topics that allow asynchronous communication between microservices.
  2. Backend for Frontend (BFF): We implement REST APIs protected with JWT, which serve as intermediaries between the frontend and the database.

Validations and Migrations

DTO validation and data migration are crucial in our system. TypeScript has allowed us to define strict types and structures with Knex and TypeORM to handle migrations. Although effective, this approach requires a deep understanding of the language and how to manipulate data streams across different microservices.

Challenges with NestJS

We detected event loop issues that affected performance, which we addressed using the Clinic.js library. We identified bottlenecks and optimized the use of design patterns along with async and await. However, managing concurrency in Node.js can be complex and expensive in terms of resources.

Getting into Go

When exploring Go, we encounter a paradigm transition and a series of significant differences:

  1. Compilation and Static Typing: Unlike TypeScript, Go is a compiled language with strong static typing, which forces us to detect errors at compile time.
  2. Control Flow and Error Handling: Go simplifies error handling through its explicit focus on returning errors, rather than exceptions.
  3. Data Structure and Memory: Memory allocation and data structure management in Go requires a deeper understanding of the hardware, which is different from the more abstract approach of JavaScript.

OOP and Interfaces

In Go, although object orientation is supported, it manifests itself differently. The absence of traditional inheritance and the use of interfaces provides a distinct flexibility that must be thoroughly understood to take full advantage.

Comparative Examples

Data Validation

  • NestJS: We use Decorators in DTOs for validation.

    import { IsString, IsInt } from 'class-validator';
    
    class CreateUserDto {
        @IsString()
        name: string;
    
        @IsInt()
        age: number;
    }
    
  • Go: We use libraries like go-playground/validator for validation.

    import (
        "gopkg.in/go-playground/validator.v9"
    )
    
    type User struct {
        Name string `validate:"required"`
        Age  int    `validate:"gte=0"`
    }
    
    validate := validator.New()
    user := &User{Name: "Alice", Age: 25}
    err := validate.Struct(user)
    

Asynchronous Communication

  • NestJS: Using async/await to handle promises.

    async function fetchData(): Promise<void> {
        const data = await apiCall();
        console.log(data);
    }
    
  • Go: Use of goroutines and channels for concurrency.

    func fetchData() {
        dataChan := make(chan string)
        go func() {
            dataChan <- apiCall()
        }()
        data := <-dataChan
        fmt.Println(data)
    }
    

Tools and Settings

In Go, we have adopted tools like Gin for REST APIs and Gorm as ORM. Setting up our environment in VSCode with make to automate tasks has been crucial to maintaining productivity and adapting to this new workflow.

Final Thoughts

Migrating from NestJS with TypeScript to Go has been challenging but also rewarding. While NestJS offers a rich experience in rapid API development with a focus on reuse and abstraction, Go has given us more granular control over concurrency and performance, essential for highly scalable applications.

We continue to experiment and adjust our workflows, and despite the challenges, we are excited about the possibilities that Go offers for the future of our microservices.


I hope this blog serves as a guide and inspiration to those considering a similar transition. What experiences have you had with technology migration? What challenges and solutions have you found along the way?

Share your stories and let's continue learning together!

The above is the detailed content of Migrating NestJS Microservices with TypeScript to Go: A Week of Discoveries. For more information, please follow other related articles on the PHP Chinese website!

Statement
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Type Assertions and Type Switches with Go InterfacesType Assertions and Type Switches with Go InterfacesMay 02, 2025 am 12:20 AM

Gohandlesinterfacesandtypeassertionseffectively,enhancingcodeflexibilityandrobustness.1)Typeassertionsallowruntimetypechecking,asseenwiththeShapeinterfaceandCircletype.2)Typeswitcheshandlemultipletypesefficiently,usefulforvariousshapesimplementingthe

Using errors.Is and errors.As for Error Inspection in GoUsing errors.Is and errors.As for Error Inspection in GoMay 02, 2025 am 12:11 AM

Go language error handling becomes more flexible and readable through errors.Is and errors.As functions. 1.errors.Is is used to check whether the error is the same as the specified error and is suitable for the processing of the error chain. 2.errors.As can not only check the error type, but also convert the error to a specific type, which is convenient for extracting error information. Using these functions can simplify error handling logic, but pay attention to the correct delivery of error chains and avoid excessive dependence to prevent code complexity.

Performance Tuning in Go: Optimizing Your ApplicationsPerformance Tuning in Go: Optimizing Your ApplicationsMay 02, 2025 am 12:06 AM

TomakeGoapplicationsrunfasterandmoreefficiently,useprofilingtools,leverageconcurrency,andmanagememoryeffectively.1)UsepprofforCPUandmemoryprofilingtoidentifybottlenecks.2)Utilizegoroutinesandchannelstoparallelizetasksandimproveperformance.3)Implement

The Future of Go: Trends and DevelopmentsThe Future of Go: Trends and DevelopmentsMay 02, 2025 am 12:01 AM

Go'sfutureisbrightwithtrendslikeimprovedtooling,generics,cloud-nativeadoption,performanceenhancements,andWebAssemblyintegration,butchallengesincludemaintainingsimplicityandimprovingerrorhandling.

Understanding Goroutines: A Deep Dive into Go's ConcurrencyUnderstanding Goroutines: A Deep Dive into Go's ConcurrencyMay 01, 2025 am 12:18 AM

GoroutinesarefunctionsormethodsthatrunconcurrentlyinGo,enablingefficientandlightweightconcurrency.1)TheyaremanagedbyGo'sruntimeusingmultiplexing,allowingthousandstorunonfewerOSthreads.2)Goroutinesimproveperformancethrougheasytaskparallelizationandeff

Understanding the init Function in Go: Purpose and UsageUnderstanding the init Function in Go: Purpose and UsageMay 01, 2025 am 12:16 AM

ThepurposeoftheinitfunctioninGoistoinitializevariables,setupconfigurations,orperformnecessarysetupbeforethemainfunctionexecutes.Useinitby:1)Placingitinyourcodetorunautomaticallybeforemain,2)Keepingitshortandfocusedonsimpletasks,3)Consideringusingexpl

Understanding Go Interfaces: A Comprehensive GuideUnderstanding Go Interfaces: A Comprehensive GuideMay 01, 2025 am 12:13 AM

Gointerfacesaremethodsignaturesetsthattypesmustimplement,enablingpolymorphismwithoutinheritanceforcleaner,modularcode.Theyareimplicitlysatisfied,usefulforflexibleAPIsanddecoupling,butrequirecarefulusetoavoidruntimeerrorsandmaintaintypesafety.

Recovering from Panics in Go: When and How to Use recover()Recovering from Panics in Go: When and How to Use recover()May 01, 2025 am 12:04 AM

Use the recover() function in Go to recover from panic. The specific methods are: 1) Use recover() to capture panic in the defer function to avoid program crashes; 2) Record detailed error information for debugging; 3) Decide whether to resume program execution based on the specific situation; 4) Use with caution to avoid affecting performance.

See all articles

Hot AI Tools

Undresser.AI Undress

Undresser.AI Undress

AI-powered app for creating realistic nude photos

AI Clothes Remover

AI Clothes Remover

Online AI tool for removing clothes from photos.

Undress AI Tool

Undress AI Tool

Undress images for free

Clothoff.io

Clothoff.io

AI clothes remover

Video Face Swap

Video Face Swap

Swap faces in any video effortlessly with our completely free AI face swap tool!

Hot Tools

DVWA

DVWA

Damn Vulnerable Web App (DVWA) is a PHP/MySQL web application that is very vulnerable. Its main goals are to be an aid for security professionals to test their skills and tools in a legal environment, to help web developers better understand the process of securing web applications, and to help teachers/students teach/learn in a classroom environment Web application security. The goal of DVWA is to practice some of the most common web vulnerabilities through a simple and straightforward interface, with varying degrees of difficulty. Please note that this software

Safe Exam Browser

Safe Exam Browser

Safe Exam Browser is a secure browser environment for taking online exams securely. This software turns any computer into a secure workstation. It controls access to any utility and prevents students from using unauthorized resources.

mPDF

mPDF

mPDF is a PHP library that can generate PDF files from UTF-8 encoded HTML. The original author, Ian Back, wrote mPDF to output PDF files "on the fly" from his website and handle different languages. It is slower than original scripts like HTML2FPDF and produces larger files when using Unicode fonts, but supports CSS styles etc. and has a lot of enhancements. Supports almost all languages, including RTL (Arabic and Hebrew) and CJK (Chinese, Japanese and Korean). Supports nested block-level elements (such as P, DIV),

Dreamweaver CS6

Dreamweaver CS6

Visual web development tools

SAP NetWeaver Server Adapter for Eclipse

SAP NetWeaver Server Adapter for Eclipse

Integrate Eclipse with SAP NetWeaver application server.