<?xml version="1.0" encoding="utf-8" standalone="yes"?><rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom"><channel><title>TypeScript on Antonio Cortés (DrZippie)</title><link>https://antoniocortes.com/tags/typescript/</link><description>Recent content in TypeScript on Antonio Cortés (DrZippie)</description><generator>Hugo</generator><language>es-es</language><lastBuildDate>Sun, 01 Feb 2026 21:46:02 +0100</lastBuildDate><atom:link href="https://antoniocortes.com/tags/typescript/index.xml" rel="self" type="application/rss+xml"/><item><title>Deno 2.4: El bundle ha vuelto</title><link>https://antoniocortes.com/2025/07/05/deno-2.4-el-bundle-ha-vuelto/</link><pubDate>Sat, 05 Jul 2025 00:00:00 +0000</pubDate><guid>https://antoniocortes.com/2025/07/05/deno-2.4-el-bundle-ha-vuelto/</guid><description>&lt;p&gt;Deno 2.4 acaba de ser liberado, y debo admitir que me ha sorprendido gratamente. No solo por la cantidad de características nuevas, sino por una en particular que muchos creíamos que no volvería: &lt;strong&gt;&lt;code&gt;deno bundle&lt;/code&gt; ha regresado&lt;/strong&gt;. Y esta vez, para quedarse.&lt;/p&gt;
&lt;p&gt;Esta versión viene cargada de mejoras que van desde importar archivos de texto directamente hasta observabilidad estable con OpenTelemetry. Vamos a ver qué nos trae esta release.&lt;/p&gt;
&lt;h2 id="el-regreso-triunfal-de-deno-bundle"&gt;El regreso triunfal de &lt;code&gt;deno bundle&lt;/code&gt;&lt;/h2&gt;
&lt;p&gt;Para los que llevamos tiempo con Deno, &lt;code&gt;deno bundle&lt;/code&gt; fue una de esas características que usábamos constantemente hasta que &lt;a href="https://github.com/denoland/deno/issues/11073"&gt;fue deprecada en 2021&lt;/a&gt;. El equipo de Deno admitió que el bundling es un problema complejo y que no podían hacerlo bien.&lt;/p&gt;</description></item><item><title>Deno 2.4: The Bundle is Back</title><link>https://antoniocortes.com/en/post/2025/deno-24-el-bundle-ha-vuelto/</link><pubDate>Sat, 05 Jul 2025 00:00:00 +0000</pubDate><guid>https://antoniocortes.com/en/post/2025/deno-24-el-bundle-ha-vuelto/</guid><description>&lt;p&gt;Deno 2.4 has just been released, and I must admit it has pleasantly surprised me. Not only because of the number of new features, but because of one in particular that many of us thought would never return: &lt;strong&gt;&lt;code&gt;deno bundle&lt;/code&gt; is back&lt;/strong&gt;. And this time, it&amp;rsquo;s here to stay.&lt;/p&gt;
&lt;p&gt;This release comes packed with improvements ranging from importing text files directly to stable observability with OpenTelemetry. Let&amp;rsquo;s explore what this release brings us.&lt;/p&gt;</description></item><item><title>Effect TS: La biblioteca que está revolucionando la programación funcional en TypeScript</title><link>https://antoniocortes.com/2025/06/22/effect-ts-la-biblioteca-que-est%C3%A1-revolucionando-la-programaci%C3%B3n-funcional-en-typescript/</link><pubDate>Sun, 22 Jun 2025 00:00:00 +0000</pubDate><guid>https://antoniocortes.com/2025/06/22/effect-ts-la-biblioteca-que-est%C3%A1-revolucionando-la-programaci%C3%B3n-funcional-en-typescript/</guid><description>&lt;p&gt;Durante mucho tiempo, TypeScript ha carecido de una &lt;strong&gt;biblioteca estándar robusta&lt;/strong&gt;. Mientras que otros lenguajes como Rust, Go o Python ofrecen herramientas estándar para el manejo de errores, concurrencia y efectos secundarios, los desarrolladores de TypeScript hemos tenido que recurrir a múltiples bibliotecas especializadas. &lt;strong&gt;Effect TS&lt;/strong&gt; está cambiando esto al ofrecer una solución unificada y potente para el desarrollo de aplicaciones TypeScript modernas.&lt;/p&gt;
&lt;h2 id="qué-es-effect-ts"&gt;¿Qué es Effect TS?&lt;/h2&gt;
&lt;p&gt;Effect es una poderosa biblioteca de TypeScript diseñada para ayudar a los desarrolladores a crear fácilmente programas complejos, síncronos y asíncronos. Inspirada en &lt;strong&gt;ZIO&lt;/strong&gt; de Scala, Effect trae los principios de la programación funcional a TypeScript de una manera práctica y accesible.&lt;/p&gt;</description></item><item><title>Effect TS: The Library Revolutionizing Functional Programming in TypeScript</title><link>https://antoniocortes.com/en/post/2025/effect_ts_22_junio_2025/</link><pubDate>Sun, 22 Jun 2025 00:00:00 +0000</pubDate><guid>https://antoniocortes.com/en/post/2025/effect_ts_22_junio_2025/</guid><description>&lt;p&gt;For a long time, TypeScript has lacked a &lt;strong&gt;robust standard library&lt;/strong&gt;. While other languages like Rust, Go, or Python offer standard tools for error handling, concurrency, and side effects, TypeScript developers have had to resort to multiple specialized libraries. &lt;strong&gt;Effect TS&lt;/strong&gt; is changing this by offering a unified and powerful solution for modern TypeScript application development.&lt;/p&gt;
&lt;h2 id="what-is-effect-ts"&gt;What is Effect TS?&lt;/h2&gt;
&lt;p&gt;Effect is a powerful TypeScript library designed to help developers easily create complex, synchronous, and asynchronous programs. Inspired by &lt;strong&gt;ZIO&lt;/strong&gt; from Scala, Effect brings functional programming principles to TypeScript in a practical and accessible way.&lt;/p&gt;</description></item><item><title>Complete Guide to Configuring Path Aliases in Node.js with TypeScript: Goodbye to Infinite '../../../'</title><link>https://antoniocortes.com/en/post/2025/path_aliases_nodejs_typescript_8_junio_2025/</link><pubDate>Sun, 08 Jun 2025 00:00:00 +0000</pubDate><guid>https://antoniocortes.com/en/post/2025/path_aliases_nodejs_typescript_8_junio_2025/</guid><description>&lt;p&gt;Are you tired of seeing imports like &lt;code&gt;import Logger from &amp;quot;../../../utils/logger&amp;quot;&lt;/code&gt; in your Node.js projects? If you develop applications with complex folder structures, you&amp;rsquo;ve surely encountered the &lt;strong&gt;labyrinth of dots and slashes&lt;/strong&gt; that relative imports can become. Fortunately, TypeScript offers an elegant solution: &lt;strong&gt;Path Aliases&lt;/strong&gt;.&lt;/p&gt;
&lt;p&gt;In this complete guide, you&amp;rsquo;ll learn to configure path aliases in Node.js projects with TypeScript, forever eliminating those confusing imports and significantly improving the readability and maintainability of your code.&lt;/p&gt;</description></item><item><title>Guía completa para configurar Path Aliases en Node.js con TypeScript: Adiós a los '../../../' infinitos</title><link>https://antoniocortes.com/2025/06/-infinitos/</link><pubDate>Sun, 08 Jun 2025 00:00:00 +0000</pubDate><guid>https://antoniocortes.com/2025/06/-infinitos/</guid><description>&lt;p&gt;¿Estás cansado de ver imports como &lt;code&gt;import Logger from &amp;quot;../../../utils/logger&amp;quot;&lt;/code&gt; en tus proyectos de Node.js? Si desarrollas aplicaciones con estructuras de carpetas complejas, seguramente te has encontrado con el &lt;strong&gt;laberinto de puntos y barras&lt;/strong&gt; que pueden llegar a ser los imports relativos. Afortunadamente, TypeScript ofrece una solución elegante: los &lt;strong&gt;Path Aliases&lt;/strong&gt;.&lt;/p&gt;
&lt;p&gt;En esta guía completa aprenderás a configurar path aliases en proyectos Node.js con TypeScript, eliminando para siempre esos imports confusos y mejorando significativamente la legibilidad y mantenibilidad de tu código.&lt;/p&gt;</description></item></channel></rss>