Skip to content

Instantly share code, notes, and snippets.

@ivanbanov
Last active June 17, 2023 15:06
Show Gist options
  • Save ivanbanov/6f33117842deebc3b0784ec82da3a2f8 to your computer and use it in GitHub Desktop.
Save ivanbanov/6f33117842deebc3b0784ec82da3a2f8 to your computer and use it in GitHub Desktop.
Bundlers comparison
<table>
<tbody>
<tr>
<th align='left' />
<th>Rollup</th>
<th>SWC</th>
<th>esbuild</th>
<th>tsup</th>
<th>Vite</th>
<th>Parcel</th>
<th>Webpack</th>
</tr>
<tr>
<th align='left'>Monorepo support</th>
<td>⛔️</td>
<td>⛔️</td>
<td>⛔️</td>
<td>⛔️</td>
<td>⛔️</td>
<td>✅</td>
<td>⛔️</td>
</tr>
<tr>
<th align='left'>Performance</th>
<td>esbuid/swc</td>
<td>✅</td>
<td>✅</td>
<td>esbuid/swc</td>
<td>esbuid/swc</td>
<td>✅</td>
<td>esbuid/swc</td>
</tr>
<tr>
<th align='left'>Type declaration (.d.ts)</th>
<td>rollup-plugin-dts</td>
<td>⛔️</td>
<td>⛔️</td>
<td>rollup-plugin-dts</td>
<td>rollup-plugin-dts</td>
<td>✅</td>
<td>ts-loader</td>
</tr>
<tr>
<th align='left'>Declaration map (.d.ts.map)</th>
<td>⛔️</td>
<td>⛔️</td>
<td>⛔️</td>
<td>⛔️</td>
<td>⛔️</td>
<td>✅</td>
<td>ts-loader</td>
</tr>
<tr>
<th align='left'>Treeshaking</th>
<td>✅</td>
<td>✅</td>
<td>✅</td>
<td>esbuild + rollup</td>
<td>esbuild + rollup</td>
<td>✅</td>
<td>✅</td>
</tr>
<tr>
<th align='left'>Type-check</th>
<td>⛔️</td>
<td>⛔️</td>
<td>⛔️</td>
<td>⛔️</td>
<td>⛔️</td>
<td>⛔️</td>
<td>ts-loader</td>
</tr>
<tr>
<th align='left'>Cache</th>
<td>⛔️</td>
<td>⛔️</td>
<td>⛔️</td>
<td>⛔️</td>
<td>✅ (didnt try)</td>
<td>✅</td>
<td>⛔️</td>
</tr>
<tr>
<th align='left'>Watcher</th>
<td>✅</td>
<td>✅</td>
<td>✅</td>
<td>✅</td>
<td>✅</td>
<td>✅</td>
<td>✅</td>
</tr>
<tr>
<th align='left'>Setup</th>
<td>Easy</td>
<td>Easy</td>
<td>Easy</td>
<td>Easy</td>
<td>Easy? (didnt try)</td>
<td>Very easy</td>
<td>Medium</td>
</tr>
</tbody>
</table>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment