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.
@brainstack/inject
Advanced tools
A lightweight dependency injection library for JavaScript and TypeScript, designed to facilitate dependency management and injection in your projects.
You can install the package using npm:
npm install @brainstack/inject
Import the inject
function and use it to create a dependency container. You can then register and get for dependencies in the container.
import { inject } from '@brainstack/inject';
const container = inject();
interface Logger {
log(message: string): void;
}
class ConsoleLogger implements Logger {
log(message: string) {
console.log(message);
}
}
const logger = new ConsoleLogger();
const unregister = container.register<Logger>('logger', logger);
const retrievedLogger = container.get<Logger>('logger');
retrievedLogger.log('Hello, world!');
import { inject } from '@brainstack/inject';
const container = inject();
interface Logger {
log(message: string): void;
}
class ConsoleLogger implements Logger {
log(message: string) {
console.log(message);
}
}
const logger = new ConsoleLogger();
container.register<Logger>('logger', logger);
const retrievedLogger = container.get<Logger>('logger');
retrievedLogger.log('Hello, world!');
In this example, we define a Logger
interface and create a ConsoleLogger
class that implements this interface. We then register an instance of ConsoleLogger
with the ID 'logger'
in the dependency container. Finally, we retrieve the logger service using the get
method and use it to log a message.
inject()
Creates a new dependency container.
Returns: Dependency container object with methods.
register<T>(id: string, instance: T): () => void
Registers a new dependency in the container.
id
: The ID of the dependency.instance
: The instantiated object of the dependency.Returns: A function to unregister the API section of the README.md file:
get<T>(id: string): T | undefined
Gets a dependency from the container by its ID.
id
: The ID of the dependency.Returns: The retrieved dependency or undefined
if not found.
Contributions are welcome! If you would like to contribute to this module, please follow these guidelines:
Fork the repository Create a new branch for your changes Make your changes and commit them with descriptive commit messages Push your changes to your fork Submit a pull request
This module is released under the MIT License.
FAQs
A Micro Dependency Injection Package
The npm package @brainstack/inject receives a total of 2 weekly downloads. As such, @brainstack/inject popularity was classified as not popular.
We found that @brainstack/inject demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 0 open source maintainers 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.