What is a key advantage of using a message broker like RabbitMQ or Kafka for NestJS microservice communication?
Explanation:
Message brokers introduce a robust layer for handling message delivery. If a service is down, the message is persisted and can be retried, enhancing fault tolerance.
What is the role of the 'transform()' method within a custom Pipe in NestJS?
Explanation:
The 'transform()' method is the core of a custom Pipe. This is where you write the code to manipulate, validate, or transform the input data before it reaches your route handler.
In TypeORM, what is the purpose of an Entity?
Explanation:
Entities in TypeORM represent database tables. They are classes decorated with @Entity()
, and their properties correspond to columns in the table. This mapping allows TypeORM to synchronize your code with the database schema.
How do you define a custom HTTP exception filter in NestJS?
Explanation:
To create a custom exception filter, you define a class that implements ExceptionFilter<T>
, where T
is the exception type you want to handle. You then use the @Catch(HttpExceptionType)
decorator on the class, specifying the exception type to catch.
In a NestJS microservice architecture, how do services typically communicate with each other asynchronously?
Explanation:
Message queues provide a decoupled way for services to send and receive messages asynchronously, enhancing reliability and fault tolerance.
What is the primary function of a Pipe in NestJS?
Explanation:
Pipes in NestJS act as data transformers. They intercept incoming requests and can modify, validate, or transform data before it reaches the route handler.
What is the purpose of the 'ParseIntPipe' in NestJS?
Explanation:
The ParseIntPipe is specifically designed to take a string input and attempt to convert it into an integer. It's useful for handling route parameters or query strings that are expected to be numbers.
How can you apply a transformation interceptor to a specific method in a controller in NestJS?
Explanation:
To apply a transformation interceptor to a specific method within a controller, you use the @UseInterceptors()
decorator directly above the method definition. This ensures the interceptor is applied only to that specific method.
What is a common way to implement Role-Based Access Control (RBAC) in NestJS Guards?
Explanation:
A common approach is to fetch the user's roles during authentication, store them (e.g., in the request object), and then access and compare them within your Guards to determine access rights.
What is the main function of a transformation interceptor in NestJS?
Explanation:
Transformation interceptors in NestJS are designed to modify or transform the incoming request data before it reaches the route handler or the outgoing response data before it's sent back to the client.