nodeboot-starter-aws
Installation
SKILL.md
@nodeboot/starter-aws
Use this starter when a Node-Boot service should inject AWS SDK clients instead of constructing them manually. @EnableAws() turns on config-driven client registration, and @SqsListener(...) is the extra decorator to remember when consuming queue messages.
Enable
@EnableDI(Container)
@EnableAws()
@EnableComponentScan()
@NodeBootApplication()
export class FactsServiceApp implements NodeBootApp {
start(): Promise<NodeBootAppView> {
return NodeBoot.run(ExpressServer);
}
}