1.0.8 • Published 11 months ago

@withjoy/message-queue v1.0.8

Weekly downloads
18
License
MIT
Repository
-
Last release
11 months ago

message-queue

Node.js module that provides classes to publish messages/subscribe to the queue. Also declares types that dictate the expected format of the message queue payloads.

FIXME: To Be Documented

  • how it uses rxjs
  • where are the useful Types?

Users

  • email_service uses its subscriber code in order to listen to new push notification and email send requests.
  • registry_service uses its publishing code in order to trigger new push notifications and emails.
  • event_service uses its publishing code for most of its Post Office features, as well as Couple notifications.
  • TODO: add other users here

Related Documentation

Setup

You will need

  • Node 12, or whatever matches .nvmrc

Then, from within message-queue,

# set up Node
nvm use
yarn install

# run the Test Suite
yarn test

This is sufficient if you're developing your changes in isolation.

However, it's likely that you'll also want to try out the results "live" using email_service. You'll need to install it locally and link the two repos. Please consult the email_service README section that talks about 'editing message-queue'.

Core Principles

One of the main jobs of this module is to provide consistent payload "shapes" of a message for both the Producer and Consumer (email_service).

The Email payload shapes live in 'src/queue.types/email.ts';

  • EmailType specifies a unique name for each message / payload type
  • EmailType + EMAIL_TYPE_SET calls out all of the EmailType names
  • each shape implements an interface that extends EmailInfo (to provide the emailType)
  • EmailInterfaces calls out all of the interfaces

The Push Notification payload shapes live in 'src/queue.types/push.notifications.ts' and follow a similiar paradigm.

Publishing the Module

To publish a new version of this module,

  • do not up-version on your development branch
  • merge your fixes into master
  • from the master branch,
yarn version --patch  # or whatever is suitable

As a follow-up,

  • package.json is up-versioned
  • a semver-ish tag is pushed to Git
  • CircleCI will perform the yarn publish operation when it detects the tag
  • it's ready once the 'versions' in yarn info @withjoy/message-bus have been updated

Standard Queue Names

message-queue uses an Azure Storage Queue for pub-sub. There is one Queue per deployment environment. It is configured as AZ_QUEUE_ACCOUNT_NAME within the Service that imports this module, along with a corresponding secure AZ_QUEUE_ACCOUNT_KEY.

EnvironmentQueue
Developmentwithjoyvendorsdev
Stagingwithjoyvendorsstage
Productionwithjoyvendorsprod

These Queues should not be used for local development. If you subscribe to them locally, you will be work-stealing from the deployed Service.

There is an additional Queue -- joymessagequeuelocal -- which has been created for local development purposes. However, like the others, that Queue is a singleton shared by all Developers. If two Developers are running event_service locally, they can work-steal from each other.

In such a case, you might not see your changes, because the email could be generated by someone else's Service. Fortunately, this rarely happens.

CircleCI

Its Project uses the following Environment Variables:

  • ARTIFACTORY_TOKEN
  • CIRCLE_CI_KEY
  • DOCKER_HUB_PASSWORD
  • NPM_TOKEN
1.0.8

11 months ago

1.0.7

11 months ago

1.0.6

12 months ago

1.0.2

1 year ago

1.0.1

1 year ago

1.0.0

1 year ago

1.0.5

12 months ago

1.0.4

12 months ago

1.0.3

1 year ago

0.2.17

1 year ago

0.2.16

1 year ago

0.2.15

1 year ago

0.0.40

2 years ago

0.0.41

2 years ago

0.0.42

2 years ago

0.0.43

2 years ago

0.0.44

2 years ago

0.0.45

2 years ago

0.0.46

2 years ago

0.0.47

2 years ago

0.2.14

1 year ago

0.2.13

1 year ago

0.2.12

1 year ago

0.2.11

1 year ago

0.2.10

1 year ago

0.1.0

2 years ago

0.0.51

2 years ago

0.0.52

2 years ago

0.0.53

2 years ago

0.0.50

2 years ago

0.2.1

2 years ago

0.2.0

2 years ago

0.2.7

2 years ago

0.0.48

2 years ago

0.2.6

2 years ago

0.0.49

2 years ago

0.2.9

1 year ago

0.2.8

1 year ago

0.2.5

2 years ago

0.2.4

2 years ago

0.0.33-a

2 years ago

0.0.33-b

2 years ago

0.0.37

2 years ago

0.0.38

2 years ago

0.0.39

2 years ago

0.0.30

3 years ago

0.0.31

3 years ago

0.0.32

2 years ago

0.0.33

2 years ago

0.0.34

2 years ago

0.0.35

2 years ago

0.0.36

2 years ago

0.0.29

3 years ago

0.0.28

3 years ago

0.0.27-test

3 years ago

0.0.27

3 years ago

0.0.26

3 years ago

0.0.25

3 years ago

0.0.22

3 years ago

0.0.23

3 years ago

0.0.24

3 years ago

0.0.21

3 years ago

0.0.20

3 years ago

0.0.19

3 years ago

0.0.18

3 years ago

0.0.17

3 years ago

0.0.16

3 years ago

0.0.16-alpha

3 years ago

0.0.14

3 years ago

0.0.15

3 years ago

0.0.13

3 years ago

0.0.10

3 years ago

0.0.11

3 years ago

0.0.12

3 years ago

0.0.9

4 years ago

0.0.8

4 years ago

0.0.7-alpha

4 years ago

0.0.6-alpha

4 years ago

0.0.5-alpha

4 years ago

0.0.3-alpha

5 years ago

0.0.2-alpha

5 years ago

0.0.1-alpha

5 years ago