Sharfin Jahan Sakibsjsakib.hashnode.dev·Sep 5, 2023Making your own NestJS on top of express under 180 linesIt can be a little overwhelming when using NestJS for the first time. Let’s try to understand how some of its components work. Before you start I am assuming that you are familiar with NestJS and the features it provides. Most of the features that fe...Discuss·6 likesTypeScript
ByteScrum TechnologiesforByteScrum Technologiesblog.bytescrum.com·Aug 16, 2023Mapping Types and Decorators in TypeScriptIn a previous blog post, we explored the powerful combination of OpenAPI and NestJS, delving into their capabilities within the NestJS framework. 💡 What is an Open API? (bytescrum.com) Let's take a look at each component and how they work togethe...Preeti Samuel and 4 others are discussing this5 people are discussing thisDiscuss·123 likes·239 readsNestJS mapped typesGreat thanks 11
Parag Durafeparagdurafe.hashnode.dev·Jun 24, 2023Decorators in PythonPython is a versatile programming language that allows developers to write clean and concise code. One of the key features of Python is its support for decorators, which are a powerful tool for modifying the behavior of functions and classes. In this...DiscussPython
Ahtesham Zaidiahtesham-zaidi.hashnode.dev·Jun 24, 2023Demystifying Decorators in Python: A Powerful Tool for Function ManipulationIntroductionDecorators are a powerful feature in Python that allows you to modify function behavior at runtime. They are widely used in Python programming but can be a bit confusing for newcomers. In this article, we'll dive into the world of decorat...DiscussPython
s0t12s0t12.hashnode.dev·Jun 10, 2023decorators in typescriptdecorators in typescript are a way to write metaprogramming. decorators can be attached to class, method, declaration, property, accessor and parameters. Let's start by defining a decorator as a function that takes a target, property, or descriptor a...DiscussTypeScript
Aryaman Guptaaryamangupta.hashnode.dev·May 31, 2023Decorators in PythonWhat on earth are decorators??? Decorators are essentially single reusable functions that take a "function" as input and return a modified version of it. Decorators are just a bit different from regular functions because they wrap the "input function...Discuss·1 like·120 readsPython
Hamza Mateenhamxa.hashnode.dev·May 19, 2023Python Decorators? meh...In the following snippet, ... The 'print_name' function becomes the input of the 'decorate' decorator. This is possible because Python considers its functions as First Class Citizens.In other words, functions can be assigned to variables and passed a...Discuss·39 readsdecorators
David HeritageforDev with Davedevwdave.com·May 15, 2023What are Python Decorators? How do I use them?What are Python Decorators? Decorators are a tool used in Python(and many other languages) that can be used to modify the behavior of a function or class. Decorators are essentially functions that accept another function as an argument and then retur...Discuss·45 readsPythonPython
Rodrigo Vianaviana.hashnode.dev·May 6, 2023Decorators: Os decoradores do PythonOs decoradores em Python são uma ferramenta poderosa que permite modificar ou aprimorar a funcionalidade de funções, classes e métodos de forma transparente e elegante. Neste artigo, vamos discutir o que são decoradores em Python e como usá-los. O qu...Discuss·3 likes·49 readsPython
Utkarshblogs.utkarshrajput.com·Apr 29, 2023The Ultimate guide to Decorators in TypescriptWhat are Decorators Decorators are a powerful feature in TypeScript that allows developers to modify or extend the behaviour of classes, methods, accessors, and properties. They offer an elegant way to add functionality or modify the behaviour of exi...Discuss·1 like·57 readsTypeScript