Downloads:
185
Downloads of v 1.1.1:
22
Last Update:
28 Aug 2025
Package Maintainer(s):
Software Author(s):
- Biome
Tags:
Biome CLI
- 1
- 2
- 3
1.1.1 | Updated: 28 Aug 2025
Downloads:
185
Downloads of v 1.1.1:
22
Maintainer(s):
Software Author(s):
- Biome
Biome CLI 1.1.1
Legal Disclaimer: Neither this package nor Chocolatey Software, Inc. are affiliated with or endorsed by Biome. The inclusion of Biome trademark(s), if any, upon this webpage is solely to identify Biome goods or services and not for commercial purposes.
- 1
- 2
- 3
All Checks are Passing
3 Passing Tests
Deployment Method: Individual Install, Upgrade, & Uninstall
To install Biome CLI, run the following command from the command line or from PowerShell:
To upgrade Biome CLI, run the following command from the command line or from PowerShell:
To uninstall Biome CLI, run the following command from the command line or from PowerShell:
Deployment Method:
This applies to both open source and commercial editions of Chocolatey.
1. Enter Your Internal Repository Url
(this should look similar to https://community.chocolatey.org/api/v2/)
2. Setup Your Environment
1. Ensure you are set for organizational deployment
Please see the organizational deployment guide
2. Get the package into your environment
Option 1: Cached Package (Unreliable, Requires Internet - Same As Community)-
Open Source or Commercial:
- Proxy Repository - Create a proxy nuget repository on Nexus, Artifactory Pro, or a proxy Chocolatey repository on ProGet. Point your upstream to https://community.chocolatey.org/api/v2/. Packages cache on first access automatically. Make sure your choco clients are using your proxy repository as a source and NOT the default community repository. See source command for more information.
- You can also just download the package and push it to a repository Download
-
Open Source
-
Download the package:
Download - Follow manual internalization instructions
-
-
Package Internalizer (C4B)
-
Run: (additional options)
choco download biomejs-cli --internalize --source=https://community.chocolatey.org/api/v2/
-
For package and dependencies run:
choco push --source="'INTERNAL REPO URL'"
- Automate package internalization
-
Run: (additional options)
3. Copy Your Script
choco upgrade biomejs-cli -y --source="'INTERNAL REPO URL'" [other options]
See options you can pass to upgrade.
See best practices for scripting.
Add this to a PowerShell script or use a Batch script with tools and in places where you are calling directly to Chocolatey. If you are integrating, keep in mind enhanced exit codes.
If you do use a PowerShell script, use the following to ensure bad exit codes are shown as failures:
choco upgrade biomejs-cli -y --source="'INTERNAL REPO URL'"
$exitCode = $LASTEXITCODE
Write-Verbose "Exit code was $exitCode"
$validExitCodes = @(0, 1605, 1614, 1641, 3010)
if ($validExitCodes -contains $exitCode) {
Exit 0
}
Exit $exitCode
- name: Install biomejs-cli
win_chocolatey:
name: biomejs-cli
version: '1.1.1'
source: INTERNAL REPO URL
state: present
See docs at https://docs.ansible.com/ansible/latest/modules/win_chocolatey_module.html.
chocolatey_package 'biomejs-cli' do
action :install
source 'INTERNAL REPO URL'
version '1.1.1'
end
See docs at https://docs.chef.io/resource_chocolatey_package.html.
cChocoPackageInstaller biomejs-cli
{
Name = "biomejs-cli"
Version = "1.1.1"
Source = "INTERNAL REPO URL"
}
Requires cChoco DSC Resource. See docs at https://github.com/chocolatey/cChoco.
package { 'biomejs-cli':
ensure => '1.1.1',
provider => 'chocolatey',
source => 'INTERNAL REPO URL',
}
Requires Puppet Chocolatey Provider module. See docs at https://forge.puppet.com/puppetlabs/chocolatey.
4. If applicable - Chocolatey configuration/installation
See infrastructure management matrix for Chocolatey configuration elements and examples.
This package was approved as a trusted package on 28 Aug 2025.
Biome is a performant toolchain for web projects, it aims to provide developer tools to maintain the health of said projects.
Biome is a fast formatter for JavaScript, TypeScript, JSX, JSON, CSS and GraphQL that scores 97% compatibility with Prettier.
Biome is a performant linter for JavaScript, TypeScript, JSX, JSON, CSS, and GraphQL that features more than 300 rules from ESLint, typescript-eslint, and other sources.
It outputs detailed and contextualized diagnostics that help you to improve your code and become a better programmer!
Biome is designed from the start to be used interactively within an editor.
It can format and lint malformed code as you are writing it.
Usage
# format files
biome format --write
# lint files and apply the safe fixes
biome lint --write
# run format, lint, etc. and apply the safe fixes
biome check --write
# check all files against format, lint, etc. in CI environments
biome ci
If you want to give Biome a run without installing it, use the online playground, compiled to WebAssembly.
Documentation
Check out our homepage to learn more about Biome,
or directly head to the Getting Started guide to start using Biome.
Funding
You can fund the project in different ways
Project sponsorship and funding
You can sponsor or fund the project via Open collective or GitHub sponsors
Biome offers a simple sponsorship program that allows companies to get visibility and recognition among various developers.
Biome offers enterprise support, where Core Contributors can be employed to work on company-focused projects.
From: https://github.com/biomejs/biome/blob/cli/v1.1.1/LICENSE
LICENSE
MIT License
Copyright (c) 2023 Biome Developers and Contributors.
Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:
The above copyright notice and this permission notice shall be included in all
copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
SOFTWARE.
VERIFICATION
Verification is intended to assist the Chocolatey moderators and community
in verifying that this package's contents are trustworthy.
Package can be verified like this:
1. Go to https://github.com/biomejs/biome/releases/tag/cli/v1.1.1, and download from there.
x86 (64-bit): https://github.com/biomejs/biome/releases/download/cli/v1.1.1/biome-win32-x64.exe
ARM (64-bit): https://github.com/biomejs/biome/releases/download/cli/v1.1.1/biome-win32-arm64.exe
to download the executables. You may wish to rename one of the files.
2. You can use one of the following methods to obtain the SHA512 checksum:
- Use powershell function 'Get-FileHash'
- Use Chocolatey utility 'checksum.exe'
x86 (64-bit): 7cf9b2c67be13026de9371295113909babcac3f1dc17ecb76ccb996e25e25882a37b902bb08658a85bd6d5ed2f70e3015c35ba93afcd1978bd03e19a03c644ee
ARM (64-bit): 2af57255882617812887e48224f0132899e7824922c52528057e42e5a4db751f6945159cc85ff2be754b3aac2256678b3bf6db83fd6d1c6eb090ae438cceba70
File 'LICENSE.txt' obtained from:
https://github.com/biomejs/biome/blob/cli/v1.1.1/LICENSE
md5: FE7AAFE5D6DEA5915F7D3DBD7862F43A | sha1: AE31ACFF39F6E7BA2A4A6F074E218BA736F58BFB | sha256: D18C3939FC9BC72C4ED61D3F78DE3256FB968CB55E103698A601DE8C70F74648 | sha512: 2AF57255882617812887E48224F0132899E7824922C52528057E42E5A4DB751F6945159CC85FF2BE754B3AAC2256678B3BF6DB83FD6D1C6EB090AE438CCEBA70
md5: 7443D1F13B5CC7CDC75FA31425A8AEC4 | sha1: CBF4A049EC4EEBD52E296E1074FEFC7A98E30B1A | sha256: 4F3FB1FBF05EED77BCA7F15A25F39F5364027249C2D2ED4AC8E85AD1818C5200 | sha512: 7CF9B2C67BE13026DE9371295113909BABCAC3F1DC17ECB76CCB996E25E25882A37B902BB08658A85BD6D5ED2F70E3015C35BA93AFCD1978BD03E19A03C644EE
Log in or click on link to see number of positives.
- biomejs-cli.1.1.1.nupkg (13c2f98abe5b) - ## / 67
- biome.exe (d18c3939fc9b) - ## / 70
- biome.exe (4f3fb1fbf05e) - ## / 72
In cases where actual malware is found, the packages are subject to removal. Software sometimes has false positives. Moderators do not necessarily validate the safety of the underlying software, only that a package retrieves software from the official distribution point and/or validate embedded software against official distribution point (where distribution rights allow redistribution).
Chocolatey Pro provides runtime protection from possible malware.
Add to Builder | Version | Downloads | Last Updated | Status |
---|---|---|---|---|
Biome CLI 1.1.1 | 22 | Thursday, August 28, 2025 | Approved | |
Biome CLI 1.1.0 | 20 | Monday, August 18, 2025 | Approved | |
Biome CLI 1.0.0 | 13 | Wednesday, August 13, 2025 | Approved | |
Biome CLI 0.2.3 | 17 | Thursday, July 31, 2025 | Approved | |
Biome CLI 0.2.0 | 31 | Tuesday, July 29, 2025 | Approved | |
Biome CLI 0.1.2 | 46 | Saturday, July 12, 2025 | Approved | |
Biome CLI 0.1.2-nightly0 | 36 | Saturday, July 12, 2025 | Exempted |
Copyright © 2023 - 2025, Biome
Analyzer
Bug fixes
- The diagnostic for
// rome-ignore
suppression comment should not be a warning. A warning could block the CI, marking a gradual migration difficult. The code action that changes// rome-ignore
to// biome-ignore
is disabled as consequence.
What's Changed
- fix: fix website links by @matejkrajcovic in https://github.com/biomejs/biome/pull/172
- feat: rename markup, test_utils... -> biome #88 by @ekusiadadus in https://github.com/biomejs/biome/pull/169
- docs: update 1.1.0 changelog entries by @Vivalldi in https://github.com/biomejs/biome/pull/173
- release: 1.1.1 by @ematipico in https://github.com/biomejs/biome/pull/179
New Contributors
- @matejkrajcovic made their first contribution in https://github.com/biomejs/biome/pull/172
- @ekusiadadus made their first contribution in https://github.com/biomejs/biome/pull/169
Full Changelog: https://github.com/biomejs/biome/compare/cli/v1.1.0...cli/v1.1.1
-
- vcredist140 (≥ 14.20.27508.1)
Ground Rules:
- This discussion is only about Biome CLI and the Biome CLI package. If you have feedback for Chocolatey, please contact the Google Group.
- This discussion will carry over multiple versions. If you have a comment about a particular version, please note that in your comments.
- The maintainers of this Chocolatey Package will be notified about new comments that are posted to this Disqus thread, however, it is NOT a guarantee that you will get a response. If you do not hear back from the maintainers after posting a message below, please follow up by using the link on the left side of this page or follow this link to contact maintainers. If you still hear nothing back, please follow the package triage process.
- Tell us what you love about the package or Biome CLI, or tell us what needs improvement.
- Share your experiences with the package, or extra configuration or gotchas that you've found.
- If you use a url, the comment will be flagged for moderation until you've been whitelisted. Disqus moderated comments are approved on a weekly schedule if not sooner. It could take between 1-5 days for your comment to show up.