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);
    }
}

Key config

Installs
1
GitHub Stars
10
First Seen
Aug 11, 2026
nodeboot-starter-aws — nodejs-boot/node-boot