Ever since the introduction of Bun there are three runtimes to choose from when wanting to develop and run a JavaScript server. Node was the one that started it all and most applications are designed to run on that, but how would those applications fare running on the other runtimes, are they really a drop-in replacement?| iO tech_hub
Sunday afternoon programming creating a go link tool.| George Mandis
本文永久链接 - https://tonybai.com/2025/07/12/insanely-productive-in-go 大家好,我是Tony Bai。 在软件开发的世界里,我们总被灌输一种观念:选项越多,工具越强,生产力就越高。于是,我们追求功能最全的| tonybai.com
LogTape 1.0.0 has been released, marking a significant milestone for this zero-dependency logging library designed for the modern JavaScript ecosystem. This release emphasizes API stability and introduces high-performance features such as non-blocking sinks for console, stream, and file logging, along with the `fromAsyncSink()` function for integrating asynchronous logging operations. New sink integrations include packages for AWS CloudWatch Logs and Windows Event Log, enhancing LogTape's ver...| Hackers' Pub
Version 2.0 of Deno, a JavaScript and TypeScript runtime, is now feature complete and a release candidate is […]| DEVCLASS
The Node.js project has added TypeScript support – behind an “experimental” flag – with Technical Steering Committee member […]| DEVCLASS
概要 Denoではインストール後に最新バージョンや特定バージョンに変更するコマンドが存在します。 詳細は以下のURLを参照。 deno.land コマンド 最新版にバージョンアップ deno upgrade 特定バージョンにバージョンアップ deno upgrade --version バージョン| 開発覚書はてな版
概要 Visual Studio Code で Deno のテストをデバッグする設定を記載します。 通常のデバッグ実行の記事は以下を参照してください。 kakkoyakakko2.hatenablog.com| 開発覚書はてな版
概要 Visual Studio Code でDeno向けの拡張機能のご紹介です。 複数のDeno向けの拡張機能がありますが、今回は以下の拡張機能を紹介します。 marketplace.visualstudio.com| 開発覚書はてな版
概要 Visual Studio Code で Deno をデバッグする設定を記載します。 以下のページを参考に設定しています。 deno.land| 開発覚書はてな版
We will learn how to bind to the Flags module in Deno's standard library to make it easy and type-safe to pass in arguments to our command-line tools.| Practical ReScript