Skip to content

Latest commit

 

History

History
20 lines (12 loc) · 533 Bytes

README.md

File metadata and controls

20 lines (12 loc) · 533 Bytes

Spring boot + Angular WebSocket example

This project consists out of two parts:

  • A backend written in Java using Spring boot to provide a WebSocket API.
  • A frontend written in TypeScript using Angular, STOMP.js and Sock.js to communicate with the backend

Run

You can run the backend by using the following command:

cd spring-boot-websockets-api
mvnw spring-boot:run

The frontend can be ran using the following commands:

cd angular-websockets-client
npm install
npm start