An open API service indexing awesome lists of open source software.

https://github.com/mokkapps/spring-boot-websocket-anonymous-messages-demo

A demo application for a Spring Boot backend with WebSocket that sends anonymous messages to Vue.js frontend
https://github.com/mokkapps/spring-boot-websocket-anonymous-messages-demo

Last synced: over 1 year ago
JSON representation

A demo application for a Spring Boot backend with WebSocket that sends anonymous messages to Vue.js frontend

Awesome Lists containing this project

README

          

# Spring Boot WebSocket Anonymous Messages Demo

This demo is related to this blog post: [Sending Message To Specific Anonymous User On Spring WebSocket](https://www.mokkapps.de/blog/sending-message-to-specific-anonymous-user-on-spring-websocket/)

## Run the demo

Start the frontend by calling:

```bash
cd frontend

npm run serve
```

Start the backend:

```bash
cd backend

./gradlew bootRun
```

Open `http://localhost:4200` in your browser.