Security News
Oracle Drags Its Feet in the JavaScript Trademark Dispute
Oracle seeks to dismiss fraud claims in the JavaScript trademark dispute, delaying the case and avoiding questions about its right to the name.
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.
Security News
Oracle seeks to dismiss fraud claims in the JavaScript trademark dispute, delaying the case and avoiding questions about its right to the name.
Security News
The Linux Foundation is warning open source developers that compliance with global sanctions is mandatory, highlighting legal risks and restrictions on contributions.
Security News
Maven Central now validates Sigstore signatures, making it easier for developers to verify the provenance of Java packages.