Research
Security News
Malicious npm Packages Inject SSH Backdoors via Typosquatted Libraries
Socket’s threat research team has detected six malicious npm packages typosquatting popular libraries to insert SSH backdoors.
Manage environment variables in a sane way. Never push up secrets again!
~/.biome
)npm install -g biome
$ biome --help
Usage: biome [options] [command]
Commands:
init [project] Create a new project with the specified name, and save an alias to this folder.
add [project] Add a variable to a project. Specify like NAME=value.
use [project] Open a shell with a project's associated variables included.
edit [project] Open $EDITOR with the project's associated environment variables.
vars [options] [project] Echo all variables.
Options:
-h, --help output usage information
-V, --version output the version number
Examples:
$ biome init project
$ biome add project FOO=bar BAZ="I'm a teapot"
$ biome use project
To set up an environment, first run biome init project
to set up a new environment called
project
. Then, to add new variables to an environment, run biome add project KEY=value
. To
perform more complicated configurations, edit the environment directly with biome edit project
.
Once you'd like to use the environment, run biome use project
. A new instance of $SHELL
will be
spawned containing all the configured variables, plus a few Biome-specific ones. To view your
current environment, type biome
.
For each project, biome creates 2 files: a local Biomefile
and a global project.json
.
// Biomefile
{
"name": "project"
}
// project.json
{
"VARIABLE": "value"
}
The local Biomefile
can be committed to source control because it just contains a reference to the
global project. The project.json
is stored in ~/.biome/project.json
, where project
is replaced
with the identifier in the Biomefile
. This file is where the environment variables themselves are
actually stored. Since each user can have a separate project.json
for each system, everyone can
customize their config to suit their needs.
BIOME_LOCAL_NAME
: The name of the file in the project that references an environment. Defaults
to Biomefile
.BIOME_FOLDER_NAME
: The name of the folder that biome stores all secrets within. Defaults to
~/.biome
.$include
mapping to an array of envornments. For example, "$include": ["another", "environment", "here"]
.Biomefile
, define a property
called template
. Each key of template
should be the variable name, while each value should be
its default value. For example:{
"name": "my-project",
"template": {
"KEY": "value"
}
}
Then, when the user runs biome init
, they'll be prompted for the values specified. Above, they'd
be prompted for KEY
, and given a default choice of "value".
biome init
, specify a
template url after the project name, like biome init project http://example.com/template.json
.Created by Ryan Gaus
FAQs
A simple way to manage environment variables on a per-project basis
The npm package biome receives a total of 12,891 weekly downloads. As such, biome popularity was classified as popular.
We found that biome demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Research
Security News
Socket’s threat research team has detected six malicious npm packages typosquatting popular libraries to insert SSH backdoors.
Security News
MITRE's 2024 CWE Top 25 highlights critical software vulnerabilities like XSS, SQL Injection, and CSRF, reflecting shifts due to a refined ranking methodology.
Security News
In this segment of the Risky Business podcast, Feross Aboukhadijeh and Patrick Gray discuss the challenges of tracking malware discovered in open source softare.