July 10, 2020
How to make REST API’s using Node.js, Express.js & Typescript Decorators
Decorators Introduction: A Decorator is a special kind of declaration that can be attached to a class declaration, method, accessor, property, or parameter. We’ll be using Method Decorators to develop routesDecorator. Method Decorators: A Method Decorator is declared just before a method declaration. The decorator is applied to the Property Descriptor for the method and can be used to observe, modify, […]