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.
colony-framework
Advanced tools
This is a tool for dependency injection, using typescript in node.
npm install typescript --save-dev
and then npm install colony-framework --save
.
import { Injectable } from "colony-framework";
@Injectable
class MessageCreator {
GetMessage() {
return "Hello world";
}
}
And then for the subject.
import { Injectable } from "colony-framework";
@Injectable
export class TestController {
constructor(private readonly message_creator: MessageCreator) {
super();
}
async GET(query: unknown) {
return {
status: 200,
body: this.message_creator.GetMessage(),
};
}
}
Finaly build the tree.
import { TestController } "./test-controller";
import { Build } from "colony-framework";
const controller = Build(TestController);
We can also use abstract base classes in the place of interfaces. This library uses reflect-metadata under the hood so interfaces are not currently available.
export default abstract class IMessageCreator {
abstract GetMessage(): string;
}
Can be used as
import { InjectableAs } from "colony-framework";
import IMessageCreator from "./i-message-creator";
@InjectableAs(IMessageCreator)
class MessageCreator extends IMessageCreator {
GetMessage() {
return "Hello world";
}
}
This can then be imported as IMessageCreator into other injectable classes.
We can also use custom initialisers on classes. These initialisers can be asynchronous.
import { InjectableWith } from "colony-framework";
@InjectableWith(() => new MessageCreator("Hello world"))
class MessageCreator {
constructor(private readonly message: string) {
super();
}
GetMessage() {
return this.message;
}
}
This can also take a second argument for as
so as to use abstract base classes.
FAQs
A dependency injection server framework for TypeScript
We found that colony-framework 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.