awspack
v3.982.0
Published
Unified, auto-updating AWS SDK v3 wrapper including all AWS clients
Readme
awspack
Import every AWS SDK v3 client from a single package — no more juggling dozens of @aws-sdk/client-* installs.
Always stays up to date with the latest AWS SDK releases.
Prefer something leaner? Try the curated bundle: awspack-lite.
Install
npm i awspackUse
import { s3, lambda } from "awspack";
const s3Client = new s3.S3Client({ region: "us-east-1" });
const lambdaClient = new lambda.LambdaClient({});
import { S3Client } from "awspack/clients/s3"; // service-specific entry
const ec2Client = new ec2.EC2Client({});Future bundles may group services by domain (e.g., analytics-only, serverless-only ...) Ideas and feedback are welcome via issues.
MIT License.
