This repository has been archived on 2025-07-16. You can view files and clone it, but cannot push or open issues or pull requests.
Files
vue-with-websockets/frontend/README.md
Leons Aleksandrovs 3c394bddfb docs(readme): add readme file about the project
Root readme file contains task completion status, as well as intruction
on how to run project in development stage using docker compose
2025-07-07 22:09:13 +03:00

1.0 KiB

Frontend

This directory contains the frontend Vue.js application.

Purpose

The frontend is a Vue.js application that connects to the backend WebSocket server to receive real-time data and display it in a chart.

Project Structure

.
├── index.html
├── package-lock.json
├── package.json
├── public
│   └── vite.svg
├── README.md
├── src                     # Contains Vue.js application
│   ├── App.vue             # Main app component
│   ├── assets              # Assets directory
│   │   └── vue.svg
│   ├── components          # Components
│   │   └── LineChart.vue   # Line chart component
│   ├── main.js             # Vue.js entry point
│   ├── style.css           # Global css file
│   └── utils               # Utility functions
│       ├── formatDate.js   # Timestamp formatting
│       └── tryCatch.js     # Contains helper function for error handling
└── vite.config.js