Silent Install HQ
EXE WinGet

Biome

BiomeJS · 2.3.15 · x64

Before deploying, verify this file with VirusTotal ↗

Silent Commands

Portable application — no installation required. Run the executable directly from any location.

File Identity

SHA256 164ec196c874806cf91380b490dd7c7a4636e1509c055b827366e2703555ce43 VirusTotal ↗
Filename biome-win32-x64.exe

Signature

Status Upload installer to verify signature

Installer Selection

WinGet Package

Package ID BiomeJS.Biome
Version 2.3.15
Description Biome is a toolchain for web projects, aimed at providing functionalities to maintain them. It offers a formatter and linter, usable via CLI and LSP.
License Apache-2.0
Upgrade Behavior install(Install over existing)
Release Notes 2.3.15 Patch Changes - #9019 043b67c Thanks @dyc3! - Added the lint rule noNestedPromises. This rule detects nested .then() or .catch() calls that could be refactored into flat promise chains. // Invalid: nested promise that can be flattened doThing().then(function () { return doOtherThing().then(console.log); }); // Valid: flat promise chain doThing() .then(() => doOtherThing()) .then(console.log); The rule intelligently allows nesting when the inner callback references…