JavaScript/TypeScript SDK for CloudEvents
Go to file
Fabio José 5b132feabe HTTP Receiver Structured for v0.3
Signed-off-by: Fabio José <fabiojose@gmail.com>
2019-08-04 09:34:55 -03:00
examples Fix the examples and use the same names 2019-06-25 12:08:04 -03:00
ext Implementing the spec 0.3 attributes 2019-07-28 21:53:34 -03:00
http/unmarshaller Export of http unmarshaller 0.2 2019-06-20 21:45:49 -03:00
lib HTTP Receiver Structured for v0.3 2019-08-04 09:34:55 -03:00
test HTTP Receiver Structured for v0.3 2019-08-04 09:34:55 -03:00
v02 SDK Requirements: exports the receivers 2019-07-29 16:38:38 -03:00
v03 Fix the import of structured emitter 2019-08-02 10:15:30 -03:00
.gitignore Ignore .swp vim files 2019-01-19 23:45:27 -02:00
.npmignore Igore files for npm publish 2019-06-16 20:53:55 -03:00
.travis.yml Fixing the coverage issue when PR 2019-06-26 12:49:29 -03:00
CONTRIBUTING.md Fix contributing. Closes #20 2019-06-16 20:08:35 -03:00
LICENSE Initial commit 2018-09-20 15:54:57 -04:00
README.md Fix type 2019-07-29 14:18:21 -03:00
index.js double quotes 2018-12-15 11:19:48 -02:00
package.json Update to version 0.2.6 2019-07-28 22:01:13 -03:00

README.md

licence Codacy Badge Codacy Badge Build Status downloads npm version dependencies

sdk-javascript

Official CloudEvents' SDK for JavaScript.

CloudEvents logo

Contributing

Before create an awesome PR, please read our guidelines.

Examples

To see working examples, point to examples.

📰 News Letter 📰

Checkout the expressive changes.

New way to import the specifications stuff

// Import the v0.2. stuff
var v02 = require("cloudevents-sdk/v02");

// Access the spec
v02.Spec;

// Access the structured http event emitter
v02.StructuredHTTPEmitter;

// Access the binary http event emitter
v02.BinaryHTTPEmitter;

An easy way to create events

// Import the v0.2 stuff
var v02 = require("cloudevents-sdk/v02");

// Creates an event using the v0.2 spec
let ce =
  v02.event()
       .type("com.github.pull.create")
       .source("urn:event:from:myapi/resourse/123");

Versioning

Before Spec reaches 1.0

  • 0.x.p: where x relates to spec version and p relates to fixes and releases.

After Spec reaches 1.0

  • x.M.p: where x relates to spec version, M relates to minor and p relates to fixes. See semver

Installation

This CloudEvents SDK requires nodejs 6.11+

Nodejs

npm install cloudevents-sdk

Specification Support

These are the supported specifications by this version.

Specifications v0.1 v0.2 v0.3
CloudEvents yes yes yes
HTTP Transport Binding - Structured yes yes ??
HTTP Transport Binding - Binary yes yes ?
JSON Event Format yes yes ?

What we can do

What v0.1 v0.2 v0.3
Create events yes yes yes
Emit Structured events over HTTP yes yes ?
Emit Binary events over HTTP yes yes ?
JSON Event Format yes yes ?
Receice Structured events over HTTP no yes ?
Receice Binary events over HTTP no yes ?

How to use

The Cloudevent constructor arguments.

/*
 * spec  : if is null, set the spec 0.1 impl
 * format: if is null, set the JSON Format 0.1 impl
 */
Cloudevent(spec, format);

Usage

var Cloudevent = require("cloudevents-sdk");

var Spec02 = require("cloudevents-sdk/v02");

/*
 * Constructs a default instance with:
 *   - Spec 0.1
 *   - JSON Format 0.1
 */
var cloudevent01 = new Cloudevent();

/*
 * Implemented using Builder Design Pattern
 */
cloudevent01
  .type("com.github.pull.create")
  .source("urn:event:from:myapi/resourse/123");

/*
 * Backward compatibility to spec 0.1 by injecting methods from spec
 * implementation to Cloudevent
 */
cloudevent01
  .eventTypeVersion("1.0");

/*
 * Constructs an instance with:
 *   - Spec 0.2
 *   - JSON Format 0.1
 */
var cloudevent02 = new Cloudevent(Cloudevent.specs["0.2"]);

/*
 * Different specs, but the same API.
 */
cloudevent02
  .type("com.github.pull.create")
  .source("urn:event:from:myapi/resourse/123");

Formatting

var Cloudevent = require("cloudevents-sdk");

/*
 * Creates an instance with default spec and format
 */
var cloudevent =
  new Cloudevent()
        .type("com.github.pull.create")
        .source("urn:event:from:myapi/resourse/123");

/*
 * Format the payload and return it
 */
var formatted = cloudevent.format();

Emitting

var Cloudevent = require("cloudevents-sdk");

// The event
var cloudevent =
  new Cloudevent()
    .type("com.github.pull.create")
    .source("urn:event:from:myapi/resourse/123");

// The binding configuration using POST
var config = {
  method: "POST",
  url   : "https://myserver.com"
};

/*
 * To use HTTP Binary:
 *   Cloudevent.bindings["http-binary0.2"](config);
 */

// The binding instance
var binding = new Cloudevent.bindings["http-structured0.1"](config);

// Emit the event using Promise
binding.emit(cloudevent)
  .then(response => {
    // Treat the response
    console.log(response.data);

  }).catch(err => {
    // Deal with errors
    console.error(err);
  });

Receiving Events

You can choose any framework for port binding. But, use the Unmarshaller to process the HTTP Payload and HTTP Headers, extracting the CloudEvents.

The Unmarshaller will parse the HTTP Request and decides if it is a binary or a structured version of transport binding.

😃 Checkout the full working example: here.

// some parts were removed //

var Unmarshaller02 = require("cloudevents-sdk/http/unmarshaller/v02");

// some parts were removed //

app.post('/', function (req, res) {
  unmarshaller.unmarshall(req.body, req.headers)
    .then(cloudevent => {

      // TODO use the cloudevent

      res.status(201)
            .send("Event Accepted");
  })
  .catch(err => {
    console.error(err);
    res.status(400)
          .header("Content-Type", "application/json")
          .send(JSON.stringify(err));
  });
});


Repository Structure

├── index.js
├── ext
├── lib
│   ├── bindings
│   │   └── http
│   ├── cloudevent.js
│   ├── formats
│   │   └── json
│   └── specs
├── LICENSE
├── package.json
├── README.md
  • index.js: library exports
  • ext: external stuff, e.g, Cloud Events JSONSchema
  • lib/bindings: every binding implementation goes here
  • lib/bindings/http: every http binding implementation goes here
  • lib/cloudevent.js: implementation of Cloudevent, an interface
  • lib/formats/: every format implementation goes here
  • lib/specs/: every spec implementation goes here

Unit Testing

The unit test checks the result of formatted payload and the constraints.

npm test

The API

Cloudevent class

/*
 * Format the payload and return an Object.
 */
Object Cloudevent.format()

/*
 * Format the payload as String.
 */
String Cloudevent.toString()

/*
 * Create a Cloudevent instance from String.
 */
Cloudevent Cloudevent.fromString(String)

Formatter classes

Every formatter class must implement these methods to work properly.

/*
 * Format the Cloudevent payload argument and return an Object.
 */
Object Formatter.format(Object)

/*
 * Format the Cloudevent payload as String.
 */
String Formatter.toString(Object)

Parser classes

Every Parser class must implement these methods to work properly.

/*
 * The default constructor with Spec as parameter
 */
Parser(Spec)

/*
 * Try to parse the payload to some event format
 */
Object Parser.parse(payload)

Spec classes

Every Spec class must implement these methods to work properly.

/*
 * The constructor must receives the Cloudevent type.
 */
Spec(Cloudevent)

/*
 * Checks the spec constraints, throwing an error if do not pass.
 * @throws Error when it is an invalid event
 */
Spec.check()

/*
 * Checks if the argument pass through the spec constraints
 * @throws Error when it is an invalid event
 */
Spec.check(Object)

Binding classes

Every Binding class must implement these methods to work properly.

Emitter Binding

Following we have the signature for the binding to emit Cloudevents.

/*
 * The constructor must receives the map of configurations.
 */
Binding(config)

/*
 * Emits the event using an instance of Cloudevent.
 */
Binding.emit(cloudevent)

Receiver Binding

Following we have the signature for the binding to receive Cloudevents.

/*
 * The constructor must receives the map of configurations.
 */
Receiver(config)

/*
 * Checks if some Object and a Map of headers
 * follows the binding definition, throwing an error if did not follow
 */
Receiver.check(Object, Map)

/*
 * Checks and parse as Cloudevent
 */
Cloudevent Receiver.parse(Object, Map)

Unmarshaller classes

The Unmarshaller classes uses the receiver API, abstracting the formats:

  • structured
  • binary

Choosing the right implementation based on the headers map.

/*
 * Constructor without arguments
 */
Unmarshaller()

/*
 * The method to unmarshall the payload.
 * @arg payload could be a string or a object
 * @arg headers a map of headers
 */
Promise Unmarshaller.unmarshall(payload, headers)

See how to implement the method injection here

Learn about Builder Design Pattern

Check out the produced event payload using this tool