npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2026 – Pkg Stats / Ryan Hefner

@pontx/amazon-sqs

v0.1.5

Published

Type-safe Amazon SQS SDK and safety-first CLI generated from a pinned AWS Smithy contract

Readme

@pontx/amazon-sqs

Pontx Hub SDK guide

Type-safe Amazon SQS SDK and preview-first CLI generated from a pinned AWS Smithy contract. This is a Pontx community SDK, not an AWS product.

The contract is fixed to AWS SDK for JavaScript v3 revision 4efe5bc67b71dc5ec652fe77130f3bae9efe0173, covers all 23 SQS actions, and uses the official AWS SDK runtime for AWS JSON 1.0 serialization, SigV4 signing, credential-provider integration, and regional/FIPS/DualStack endpoint rules. The same upstream service is also AWS Query-compatible for documented direct HTTP calls; this SDK deliberately uses the official AWS JSON runtime.

Status

The package is published to npm and Amazon SQS is available in the Pontx Hub catalog. The web Playground currently has no AWS SigV4, region-selection, and endpoint-rules execution adapter, so it does not send SQS requests; this is an adapter limitation, not a policy-based Endpoint disablement. The SDK mirrors the raw bytes of the canonical products/amazon-sqs/spec.pontx.json from metadata commit 6bb03db8f5483a098275cb2c8c3611134e2dfe4d; its SHA-256 is 8178389d28f320feff9faef22eb32eb1cf07a0b84a3064e7df6813f99ab80eeb. Registry publication, SDK/CLI release evidence, and production verification are maintained together with this canonical contract.

SDK

import { createAmazonSqsClient } from "@pontx/amazon-sqs";

const sqs = createAmazonSqsClient({ region: process.env.AWS_REGION });
const response = await sqs.sendMessage({
  QueueUrl: "https://sqs.us-east-1.amazonaws.com/123456789012/example",
  MessageBody: "hello",
});

AWS credentials stay in the caller's process and use the standard AWS SDK provider chain. Pontx does not proxy, persist, or log them.

CLI

pnpm exec pontx-amazon-sqs list apis
pnpm exec pontx-amazon-sqs preview SendMessage \
  --input '{"QueueUrl":"https://sqs.us-east-1.amazonaws.com/123456789012/example","MessageBody":"hello"}'

The preview redacts message bodies and credential-like keys. To run any action, pass the exact preview's confirmation token to call; it is bound to the action and input, and expires after five minutes. ReceiveMessage is shown as a stateful read because it changes message visibility.

Contract provenance

contract/sqs.lock.json records the immutable source URL, revision, SHA-256, service, protocol, version, and complete action list. pnpm contract:verify refetches and verifies it; pnpm generate:check rejects generated-action drift.

License

Pontx code is MIT. See THIRD_PARTY_NOTICES.md for the Apache-2.0 AWS SDK and source attribution.