What is the recommended way to access query parameters in a NestJS controller?
Explanation:
The @Query()
decorator provides a clean and type-safe way to access query parameters from the request object. It allows retrieving specific parameters or the entire query object.
When using an Interceptor to modify the response, what is the best way to ensure type safety?
Explanation:
For type safety, define generics with the NestInterceptor
interface, specifying the expected request and response types, allowing TypeScript to perform type checking.
What are the building blocks of a NestJS application called?
Explanation:
Modules are the fundamental units of organization in NestJS. They encapsulate related components, making your application modular and easier to manage as it grows.
Which of the following best describes NestJS?
Explanation:
NestJS is a framework specifically designed for building server-side applications. It leverages the power and scalability of Node.js and provides a structured architecture for complex projects.
What is the purpose of the return
statement in a NestJS controller method?
Explanation:
The value returned from a NestJS controller method forms the response sent back to the client. This can be a simple object, a string, or more complex data.
Which decorator is used to define an Interceptor class in NestJS?
Explanation:
The @Interceptor()
decorator from @nestjs/common
is specifically designed to mark a class as an Interceptor in NestJS.
How does Dependency Injection work in NestJS?
Explanation:
Dependency Injection in NestJS is handled by its internal injector. When a component (like a controller) has a dependency specified in its constructor, the injector automatically resolves and provides an instance of that dependency.
In a typical NestJS project structure, which directory commonly houses the application's source code?
Explanation:
The /src
directory is the convention for placing your application's core modules, controllers, services, and other TypeScript/JavaScript files.
How would you define a route parameter named 'id' in a NestJS route path?
Explanation:
In NestJS, route parameters are defined using the colon (:
) followed by the parameter name. This pattern captures the value from the URL and makes it accessible within the route handler.
What is the purpose of the useFactory
property in a FactoryProvider
?
Explanation:
The useFactory
property in a FactoryProvider
is used to define a factory function. This function is responsible for creating and returning an instance of the provider. It can be asynchronous and can inject dependencies.