/samples-js-chat

Primary LanguageJavaScriptApache License 2.0Apache-2.0

Friends & Presence service - part of Cloudstate Chat sample

1. Overview

This is the implementation of the Friends and Presence services, which are part of Lightbend Cloudstate Cloudstate Chat Sample. The code is written in Javascript and runs as a Node.js server. The screenshot below shows the user interface of the chat application:

Cloudstate Sample - Chat Application

 

2. Tutorial

The Friends and Presence services have no UI. In this repo, we build these services and test them using docker and grpcurl.

A detailed tutorial is described in Javascript implementation of the Friends service. As the design of these services is quite similar, it is not necessary to repeat for the Presence service.

3. Deployment

This is at deployment time, when all the services collaborate together that we can really appreciate the true benefits of microservices. And in particular their stateful and serverless abilities. By using Cloudstate library and deploying on Kubernetes, your services store/retrieve state without requiring you to write any code nor manage any storage.

The deployment is described in details in the Cloudstate Chat Sample.

4. Javascript Dev environment setup for Cloudstate

4.1. Javascript

  • Install nvm (node version manager)

    • Check with nvm --version, version 0.34.0+ recommended

  • Install npm (node package manager)

    • Check with npm -v, version 6.14.3+ recommended

  • Install the protobuf compiler.

    • Check with protoc --version, version 3.0.0+ recommended

    • Mac OS X brew install protobuf

    • Linux sudo apt install protobuf-compiler

    • Or alternatively (src and bins)

4.2. Docker

  • Install Docker

    • Check with docker version, version v19.03+ recommended

4.3. gRPCurl for testing GRPC servers

The communication between the Cloudstate user-function uses the gRPC protocol. gRPCurl is a command-line tool allowing to query gRPC servers in the same fashion as curl with REST servers.

Install gRPCurl from brew if you are on MacOS or directly from binaries for other OS. If the installation is successful, you should be able to invoke grpcurl -version in a terminal:

$ grpcurl -version
grpcurl 1.6.0