<?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: Loc Nguyen</title>
    <description>The latest articles on DEV Community by Loc Nguyen (@vanloctech1).</description>
    <link>https://dev.to/vanloctech1</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%2F2636559%2Fcd12d0c8-81ee-4d56-9607-8c75e09da23b.jpg</url>
      <title>DEV Community: Loc Nguyen</title>
      <link>https://dev.to/vanloctech1</link>
    </image>
    <atom:link rel="self" type="application/rss+xml" href="https://dev.to/feed/vanloctech1"/>
    <language>en</language>
    <item>
      <title>High-performance, Bun-optimized Excel and CSV library for TypeScript. Work with Bun S3</title>
      <dc:creator>Loc Nguyen</dc:creator>
      <pubDate>Tue, 17 Mar 2026 03:36:05 +0000</pubDate>
      <link>https://dev.to/vanloctech1/high-performance-bun-optimized-excel-and-csv-library-for-typescript-work-with-bun-s3-5o3</link>
      <guid>https://dev.to/vanloctech1/high-performance-bun-optimized-excel-and-csv-library-for-typescript-work-with-bun-s3-5o3</guid>
      <description>&lt;p&gt;Github: &lt;a href="https://github.com/vanloctech/bun-excel" rel="noopener noreferrer"&gt;https://github.com/vanloctech/bun-excel&lt;/a&gt;&lt;br&gt;
NPM: &lt;a href="https://www.npmjs.com/package/bun-excel" rel="noopener noreferrer"&gt;https://www.npmjs.com/package/bun-excel&lt;/a&gt;&lt;/p&gt;

&lt;h2&gt;
  
  
  Why This Package
&lt;/h2&gt;

&lt;ul&gt;
&lt;li&gt;
&lt;strong&gt;Built for Bun, not adapted from Node-first abstractions&lt;/strong&gt; — The core file paths use &lt;code&gt;Bun.file()&lt;/code&gt;, &lt;code&gt;Bun.write()&lt;/code&gt;, &lt;code&gt;FileSink&lt;/code&gt;, and Bun-native streaming APIs directly.&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Works naturally with Bun-native file targets, including S3&lt;/strong&gt; — Read from and write to local paths, &lt;code&gt;Bun.file(...)&lt;/code&gt;, and Bun &lt;code&gt;S3File&lt;/code&gt; objects, including direct streaming exports to S3 destinations.&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Production export helpers for Bun backends&lt;/strong&gt; — Supports progress callbacks, &lt;code&gt;AbortSignal&lt;/code&gt;, export diagnostics, streaming &lt;code&gt;Response&lt;/code&gt; helpers, and S3 multipart tuning through Bun-native writer options.&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;TypeScript-first spreadsheet model&lt;/strong&gt; — &lt;code&gt;Workbook&lt;/code&gt;, &lt;code&gt;Worksheet&lt;/code&gt;, &lt;code&gt;Row&lt;/code&gt;, &lt;code&gt;Cell&lt;/code&gt;, and style objects are explicit and practical to work with in Bun apps.&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Focused on real report workflows&lt;/strong&gt; — Styles, formulas, hyperlinks, data validation, conditional formatting, auto filters, freeze/split panes, and workbook metadata are supported where they matter for business exports.&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Multiple write strategies for different workloads&lt;/strong&gt; — Use normal writes for simplicity, stream writes for lower memory pressure, and chunked disk-backed writes for large exports.&lt;/li&gt;
&lt;/ul&gt;

&lt;h2&gt;
  
  
  Benchmarks
&lt;/h2&gt;

&lt;p&gt;Measured on Bun &lt;code&gt;1.3.10&lt;/code&gt; / &lt;code&gt;MacOS ARM&lt;/code&gt; with a single worksheet, compressed &lt;code&gt;.xlsx&lt;/code&gt;, and &lt;code&gt;1,000,000&lt;/code&gt; rows x &lt;code&gt;10&lt;/code&gt; columns:&lt;/p&gt;

&lt;div class="table-wrapper-paragraph"&gt;&lt;table&gt;
&lt;thead&gt;
&lt;tr&gt;
&lt;th&gt;Mode&lt;/th&gt;
&lt;th&gt;Total time&lt;/th&gt;
&lt;th&gt;Finalize time&lt;/th&gt;
&lt;th&gt;Rows/sec&lt;/th&gt;
&lt;th&gt;Peak RSS&lt;/th&gt;
&lt;th&gt;Peak heapUsed&lt;/th&gt;
&lt;th&gt;File size&lt;/th&gt;
&lt;/tr&gt;
&lt;/thead&gt;
&lt;tbody&gt;
&lt;tr&gt;
&lt;td&gt;&lt;code&gt;createExcelStream()&lt;/code&gt;&lt;/td&gt;
&lt;td&gt;&lt;code&gt;13.1s&lt;/code&gt;&lt;/td&gt;
&lt;td&gt;&lt;code&gt;8.9s&lt;/code&gt;&lt;/td&gt;
&lt;td&gt;&lt;code&gt;76,363&lt;/code&gt;&lt;/td&gt;
&lt;td&gt;&lt;code&gt;110.6MB&lt;/code&gt;&lt;/td&gt;
&lt;td&gt;&lt;code&gt;5.1MB&lt;/code&gt;&lt;/td&gt;
&lt;td&gt;&lt;code&gt;54.33MB&lt;/code&gt;&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;&lt;code&gt;createChunkedExcelStream()&lt;/code&gt;&lt;/td&gt;
&lt;td&gt;&lt;code&gt;11.9s&lt;/code&gt;&lt;/td&gt;
&lt;td&gt;&lt;code&gt;8.5s&lt;/code&gt;&lt;/td&gt;
&lt;td&gt;&lt;code&gt;84,029&lt;/code&gt;&lt;/td&gt;
&lt;td&gt;&lt;code&gt;120.9MB&lt;/code&gt;&lt;/td&gt;
&lt;td&gt;&lt;code&gt;5.1MB&lt;/code&gt;&lt;/td&gt;
&lt;td&gt;&lt;code&gt;54.33MB&lt;/code&gt;&lt;/td&gt;
&lt;/tr&gt;
&lt;/tbody&gt;
&lt;/table&gt;&lt;/div&gt;

&lt;p&gt;&lt;code&gt;createExcelStream()&lt;/code&gt; now uses the same disk-backed low-memory path as the chunked writer for single-sheet exports, so the numbers are expected to be close. Re-run the large benchmark on your machine with:&lt;/p&gt;

</description>
      <category>bunjs</category>
      <category>typescript</category>
      <category>exceljs</category>
    </item>
    <item>
      <title>[Open Source] yt-dlp GUI with a beautiful interface and full features, support 1800+ websites.</title>
      <dc:creator>Loc Nguyen</dc:creator>
      <pubDate>Wed, 21 Jan 2026 17:27:45 +0000</pubDate>
      <link>https://dev.to/vanloctech1/open-source-download-high-quality-videos-without-ads-or-paywalls-base-on-yt-dlp-1kh2</link>
      <guid>https://dev.to/vanloctech1/open-source-download-high-quality-videos-without-ads-or-paywalls-base-on-yt-dlp-1kh2</guid>
      <description>&lt;p&gt;&lt;strong&gt;A modern, beautiful YouTube video downloader built with Tauri and React&lt;/strong&gt;&lt;/p&gt;

&lt;p&gt;Download Latest Release: &lt;a href="https://github.com/vanloctech/youwee/releases/latest" rel="noopener noreferrer"&gt;https://github.com/vanloctech/youwee/releases/latest&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;Source Code: &lt;a href="https://github.com/vanloctech/youwee" rel="noopener noreferrer"&gt;https://github.com/vanloctech/youwee&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;Report a Bug: Please use the "Bug Report" flair or open an issue on GitHub.&lt;/p&gt;

&lt;h2&gt;
  
  
  Features
&lt;/h2&gt;

&lt;ul&gt;
&lt;li&gt;
&lt;strong&gt;Batch Downloads&lt;/strong&gt; - Download multiple videos at once&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Playlist Support&lt;/strong&gt; - Download entire YouTube playlists&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Multiple Quality Options&lt;/strong&gt; - From 360p to 4K Ultra HD&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Subtitle Support&lt;/strong&gt; - Ability to embed subtitles into videos or save them as separate files.&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Batch Downloading&lt;/strong&gt; - Support for downloading multiple videos simultaneously.&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Expanded Compatibility&lt;/strong&gt; - Added support for 1800+ websites powered by yt-dlp.&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Download Management&lt;/strong&gt; - Added Download History and Library sections.&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;8K Resolution Support&lt;/strong&gt; - High-quality video downloading now supports up to 8K resolution.&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Developer Tools&lt;/strong&gt; - Added access to yt-dlp logs and execution commands for debugging.&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Audio Extraction&lt;/strong&gt; - Extract audio in MP3, M4A, or Opus formats&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;6 Beautiful Themes&lt;/strong&gt; - Midnight, Aurora, Sunset, Ocean, Forest, Candy&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Dark/Light Mode&lt;/strong&gt; - Choose your preferred appearance&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;H.264 Codec&lt;/strong&gt; - Maximum compatibility with all players&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;File Size Estimation&lt;/strong&gt; - Know the size before downloading&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Fast &amp;amp; Lightweight&lt;/strong&gt; - Built with Tauri for minimal resource usage&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;No External Dependencies&lt;/strong&gt; - yt-dlp bundled with the app&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;&lt;a href="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2F6vc6anlo3lpkbzmdlv22.png" class="article-body-image-wrapper"&gt;&lt;img src="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2F6vc6anlo3lpkbzmdlv22.png" alt="Youwee" width="800" height="684"&gt;&lt;/a&gt;&lt;/p&gt;

</description>
      <category>youtube</category>
      <category>ytdlp</category>
      <category>opensource</category>
    </item>
  </channel>
</rss>
