Cloud Events - Node.js

A simple web app written in Node.js that can receive and send Cloud Events that you can use for testing. It supports running in two modes:

  1. The default mode has the app reply to your input events with the output event, which is simplest for demonstrating things working in isolation, but is also the model for working for the Knative Eventing Broker concept.

  2. K_SINK mode has the app send events to the destination encoded in $K_SINK, which is useful to demonstrate how folks can synthesize events to send to a Service or Broker when not initiated by a Broker invocation (e.g. implementing an event source)

The application will use $K_SINK-mode whenever the environment variable is specified.

Follow the steps below to create the sample code and then deploy the app to your cluster. You can also download a working copy of the sample, by running the following commands:

  1. git clone -b "{{< branch >}}" https://github.com/knative/docs knative-docs
  2. cd knative-docs/docs/serving/samples/cloudevents/cloudevents-nodejs

Before you begin

  • A Kubernetes cluster with Knative installed and DNS configured. Follow the installation instructions if you need to create one.
  • Docker installed and running on your local machine, and a Docker Hub account configured (we’ll use it for a container registry).

The Sample Code

In the index.js file, you will see two key functions for the different modes of operation:

  1. const receiveAndSend = (cloudEvent, res) => {
  2. // This is called whenever an event is received if $K_SINK is set, and sends a new event
  3. // to the url in $K_SINK.
  4. }
  5. const receiveAndReply = (cloudEvent, res) => {
  6. // This is called whenever an event is received if $K_SINK is NOT set, and it replies with
  7. // the new event instead.
  8. }

Build and Deploy the Application

In the Dockerfile, you can see how the dependencies are installed using npm. You can build and push this to your registry of choice via:

  1. docker build -t <image> .
  2. docker push <image>

{{< tabs name=”cloudevents_nodejs_deploy” default=”kn” >}} {{% tab name=”yaml” %}}

To deploy the Knative service, edit the service.yaml file and replace <registry/repository/image:tag> with the image you have just created.

  1. kubectl apply -f service.yaml

{{< /tab >}} {{% tab name=”kn” %}}

To deploy using the kn CLI:

  1. kn service create cloudevents-nodejs --image=<image>

{{ /tab }}{{ /tabs }}

Testing the sample

Get the URL for your Service with:

  1. $ kubectl get ksvc
  2. NAME URL LATESTCREATED LATESTREADY READY REASON
  3. cloudevents-nodejs http://cloudevents-nodejs.default.1.2.3.4.xip.io cloudevents-nodejs-ss5pj cloudevents-nodejs-ss5pj True

Then send a cloud event to it with:

  1. $ curl -X POST \
  2. -H "content-type: application/json" \
  3. -H "ce-specversion: 1.0" \
  4. -H "ce-source: curl-command" \
  5. -H "ce-type: curl.demo" \
  6. -H "ce-id: 123-abc" \
  7. -d '{"name":"Dave"}' \
  8. http://cloudevents-nodejs.default.1.2.3.4.xip.io

You will get back:

  1. {"message":"Hello, Dave"}

Removing the sample app deployment

To remove the sample app from your cluster, delete the service.

{{< tabs name=”cloudevents_nodejs_delete” default=”kn” >}} {{% tab name=”yaml” %}}

Run:

  1. kubectl delete --filename service.yaml

{{< /tab >}} {{% tab name=”kn” %}}

Run:

  1. kn service delete cloudevents-nodejs

{{ /tab }}{{ /tabs }}

Feedback

Was this page helpful?

Glad to hear it! Please tell us how we can improve.

Sorry to hear that. Please tell us how we can improve.