<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom" xmlns:dc="http://purl.org/dc/elements/1.1/">
  <channel>
    <title>DEV Community: Youssef Selk</title>
    <description>The latest articles on DEV Community by Youssef Selk (@ussfslk).</description>
    <link>https://dev.to/ussfslk</link>
    <image>
      <url>https://media2.dev.to/dynamic/image/width=90,height=90,fit=cover,gravity=auto,format=auto/https:%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Fuser%2Fprofile_image%2F3889825%2F0df16fcc-fe18-41aa-9df2-470a7fbcf36d.jpg</url>
      <title>DEV Community: Youssef Selk</title>
      <link>https://dev.to/ussfslk</link>
    </image>
    <atom:link rel="self" type="application/rss+xml" href="https://dev.to/feed/ussfslk"/>
    <language>en</language>
    <item>
      <title>I got tired of messy TypeScript migrations in Node.js, so I built fast-ts-integrator</title>
      <dc:creator>Youssef Selk</dc:creator>
      <pubDate>Tue, 21 Apr 2026 00:40:19 +0000</pubDate>
      <link>https://dev.to/ussfslk/i-got-tired-of-messy-typescript-migrations-in-nodejs-so-i-built-fast-ts-integrator-1nhb</link>
      <guid>https://dev.to/ussfslk/i-got-tired-of-messy-typescript-migrations-in-nodejs-so-i-built-fast-ts-integrator-1nhb</guid>
      <description>&lt;p&gt;Adding TypeScript to an existing Node.js project sounds simple until it isn’t.&lt;/p&gt;

&lt;p&gt;A few files in, things usually start drifting:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;tsconfig.json stops matching the actual runtime&lt;/li&gt;
&lt;li&gt;CommonJS and ESM start fighting each other&lt;/li&gt;
&lt;li&gt;mixed .js and .ts files make the project harder to reason about&lt;/li&gt;
&lt;li&gt;test and lint setup adds even more friction&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;I kept running into that same wall, so I built a small CLI to make the setup predictable.&lt;/p&gt;

&lt;h2&gt;
  
  
  What it is
&lt;/h2&gt;

&lt;p&gt;fast-ts-integrator is a CLI that helps add TypeScript to a new or existing Node.js project with an interactive setup.&lt;/p&gt;

&lt;p&gt;It lets you choose:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;ES Modules or CommonJS&lt;/li&gt;
&lt;li&gt;tsx or ts-node&lt;/li&gt;
&lt;li&gt;Biome or ESLint + Prettier&lt;/li&gt;
&lt;li&gt;Vitest or Jest
Then it installs what is needed, generates the config, and adds the scripts so you can actually start working instead of fighting setup.&lt;/li&gt;
&lt;/ul&gt;

&lt;h2&gt;
  
  
  Why I built it
&lt;/h2&gt;

&lt;p&gt;Most of the pain was never “TypeScript itself”.&lt;/p&gt;

&lt;p&gt;It was the setup around it:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;choosing the right module strategy&lt;/li&gt;
&lt;li&gt;keeping runtime behavior consistent&lt;/li&gt;
&lt;li&gt;avoiding broken imports after migration&lt;/li&gt;
&lt;li&gt;wiring linting and testing without turning the project into config soup&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;I wanted something practical that works for real Node.js projects, not just empty demos.&lt;/p&gt;

&lt;h2&gt;
  
  
  Quick start
&lt;/h2&gt;



&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight shell"&gt;&lt;code&gt;npx fast-ts-integrator
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;or&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight shell"&gt;&lt;code&gt;npx fast-ts
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;h2&gt;
  
  
  Example flow
&lt;/h2&gt;

&lt;p&gt;The CLI walks through a few choices:&lt;/p&gt;

&lt;ol&gt;
&lt;li&gt;module system&lt;/li&gt;
&lt;li&gt;execution engine&lt;/li&gt;
&lt;li&gt;linter/formatter&lt;/li&gt;
&lt;li&gt;test framework&lt;/li&gt;
&lt;/ol&gt;

&lt;p&gt;After that, it scaffolds the setup and updates package.json for you.&lt;/p&gt;

&lt;h2&gt;
  
  
  Links
&lt;/h2&gt;

&lt;p&gt;npm: &lt;a href="https://www.npmjs.com/package/fast-ts-integrator" rel="noopener noreferrer"&gt;npm package&lt;/a&gt;&lt;br&gt;
GitHub: &lt;a href="https://github.com/YoussefSelk/fast-ts-integrator" rel="noopener noreferrer"&gt;Github Repo&lt;/a&gt;&lt;/p&gt;

&lt;h2&gt;
  
  
  Still improving
&lt;/h2&gt;

&lt;p&gt;This is an early release, and I’m actively improving it.&lt;/p&gt;

&lt;p&gt;Real feedback would help a lot, especially from people who have dealt with:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;gradual JS to TS migration&lt;/li&gt;
&lt;li&gt;CommonJS to ESM headaches&lt;/li&gt;
&lt;li&gt;existing Express or Node backends&lt;/li&gt;
&lt;li&gt;lint/test setup that tends to break during migration&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;If you try it, I’d genuinely like to know what feels smooth and what feels annoying.&lt;/p&gt;

</description>
      <category>webdev</category>
      <category>javascript</category>
      <category>beginners</category>
      <category>typescript</category>
    </item>
  </channel>
</rss>
