nodeboot-starter-http
Installation
SKILL.md
@nodeboot/starter-http
Use this starter for outbound API clients. It is not the skill for selecting the app's server adapter.
Enable
@EnableDI(Container)
@EnableHttpClients()
@EnableComponentScan()
@NodeBootApplication()
export class SampleBackendApp implements NodeBootApp {
start(): Promise<NodeBootAppView> {
return NodeBoot.run(ExpressServer);
}
}