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 🙏

© 2024 – Pkg Stats / Ryan Hefner

@occupop/lib-queue

v1.0.3

Published

This package is intended to be used with `@occupop/lib-container` providing queue consumer/publisher through AWS SQS/SNS clients.

Downloads

232

Readme

Package @occupop/lib-queue

This package is intended to be used with @occupop/lib-container providing queue consumer/publisher through AWS SQS/SNS clients.

This implementation refers to:

  • https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/client/sqs
  • https://docs.aws.amazon.com/sdk-for-javascript/v3/developer-guide/javascript_sqs_code_examples.html
  • https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/client/sns
  • https://docs.aws.amazon.com/sdk-for-javascript/v3/developer-guide/javascript_sns_code_examples.html

NPM registry token required!

Install

# Yarn
yarn add @occupop/lib-queue

# NPM
npm install @occupop/lib-queue

# Bun
bun add @occupop/lib-queue

Env Setup

ENV variables required

AWS_ENDPOINT=http://localstack:4566
AWS_REGION=eu-west-1
AWS_ACCESS_KEY_ID=...
AWS_SECRET_ACCESS_KEY=...

AWS_SQS_QUEUE_URL=http://localstack:4566/000000000000/queue-name-here
AWS_SNS_TOPIC_ARN=arn:aws:sns:eu-west-1:000000000000:topic-name-here

Register

import { makeQueueService, makeSqsClient, makeSnsClient } from '@occupop/lib-queue'
import { eventContainer } from '.event-container'
//... all other imports omited... 

export const container = createTypedContainer({
    // ...
    // queue service:
    queueService: { asFunction: makeQueueService, singleton: true },
    // optional:
    eventContainer: { asValue: eventContainer },
    sqsClient: { asFunction: makeSqsClient, singleton: true },
    snsClient: { asFunction: makeSnsClient, singleton: true },
    // ...
})
  • eventContainer can be provided direct on consumer call.
  • sqsClient/snsClient is to be registered only if you need some kind of custom implementation.

Usage (worker)

// worker.ts
import { container } from '.container'
import { eventContainer } from '.event-container'

const { mongoClient, queueService } = container.cradle

await mongoClient.connect()
console.log('Mongo connected')

// providing eventContainer...
await queueService.consume({ eventContainer })
console.log('Queue consuming')

// ... or without, if you register on main container!
// await queueService.consume()
// console.log('Queue consuming')

Usage (eventContainer simple implementation)

// event-container.ts
import type { QueueEventContainer, QueueEvent } from '@occupop/lib-queue'

export const eventContainer = {
    Event_name_here: (event: QueueEvent) => {
        // ... handler implementation
    },
    Another_event_there: (event: QueueEvent) => {
        // ... handler implementation
    }
}

Usage (eventContainer with dependency injection, recomended)

// event-container.ts
import { container } from '.container'
import type { QueueEventContainer, QueueEvent } from '@occupop/lib-queue'
import { createTypedContainerScope } from '@occupop/lib-container'

export const eventContainer = createTypedContainerScope(container, {
    Event_name_here: { asFunction: makeEventNameHandler },
    Another_event_there: { asFunction: makeAnotherEventHandler },
    Another_event_alike: { asFunction: makeAnotherEventHandler },
}).cradle

Sample event handler

// event-name-handler.ts
import type { Deps } from '.container'
import { QueueEvent } from "@occupop/lib-queue";

interface CustomEventName extends QueueEvent {
    customAttribute: string
    randomEntity: {
        uuid: string
        someOtherAttribute: string
        maybeAnOptionalOne?: boolean
    }
}

export const makeEventNameHandler = ({ fooService, barService }: Deps) => {
    (event: CustomEventName) => {
        // implementation that depends on fooService and barService...
    }
}