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.
@injex/env-plugin
Advanced tools
The Env Plugin defines and manages multiple environment variables based on the process.env.NODE_ENV
variable, with a fallback to default variables option.
The plugin adds the relevant environment object to the runtime container so you can inject it into any module as a dependency.
This is NOT a runtime specific plugin and can be used on all Injex's runtimes.
You can install the Env Plugin via NPM
npm install --save @injex/env-plugin
or Yarn
yarn add @injex/env-plugin
Creating the plugin and passing it to the runtime container config object
import { Injex } from "@injex/node";
import { EnvPlugin } from "@injex/env-plugin";
Injex.create({
rootDirs: [__dirname],
plugins: [
new EnvPlugin({
name: 'env',
current: "production",
defaults: {
myVar: 123
},
environments: {
development: {
logLevel: "verbose"
},
production: {
logLevel: "silence"
}
}
})
]
});
You can pass the following configurations to the EnvPlugin.
name
The environment object name, as it will be used in the runtime container for later injection.
string
env
false
current
Enforce an environment by its name.
string
process.env.NODE_ENV
false
defaults
An object with default values to be used as a fallback to the selected environment.
object
{}
false
environments
An object contains the environments and their variables.
For example:
const plugin = new EnvPlugin({
...
environments: {
development: {
arg1: 1,
arg2: 2
},
production: {
arg1: 3,
arg2: 4
},
test: {
arg1: 5,
arg2: 6
}
}
});
object
{}
false
To inject the environment object created by the plugin into other modules using the @inject()
decorator.
@define()
@singleton()
export class MyService {
@inject() private env;
@init()
public initialize() {
console.log(this.env.logLovel); // "silence"
console.log(this.env.myVar); // 123
}
}
FAQs
Unknown package
We found that @injex/env-plugin demonstrated a healthy version release cadence and project activity because the last version was released less than 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.