From e8adb6255f296fcd692a5e719398e0c9b1cd3205 Mon Sep 17 00:00:00 2001 From: AlexFreik Date: Sun, 3 Dec 2023 11:17:10 +0530 Subject: [PATCH] refactoring --- zam/Makefile => Makefile | 4 ++-- README.md | 6 ++++-- zam/package-lock.json => package-lock.json | 0 zam/package.json => package.json | 2 +- zam/README.md | 16 ++++++++-------- 5 files changed, 15 insertions(+), 13 deletions(-) rename zam/Makefile => Makefile (72%) rename zam/package-lock.json => package-lock.json (100%) rename zam/package.json => package.json (78%) diff --git a/zam/Makefile b/Makefile similarity index 72% rename from zam/Makefile rename to Makefile index b7cb82b..f1e6174 100644 --- a/zam/Makefile +++ b/Makefile @@ -6,5 +6,5 @@ install: pretty: npx prettier --write . -start: - npm start +start-zam: + npm start-zam diff --git a/README.md b/README.md index df9f426..ba48c2a 100644 --- a/README.md +++ b/README.md @@ -1,11 +1,13 @@ # LSM: Live Streaming Monitors -## ZAM: Zoom Auto Monitor +## [ZAM: Zoom Auto Monitor](https://alexfreik.github.io/lsm/zam/) + `JS` script that solves the issue when co-hosts click the "Mute All" button and mute the host. And other similar issues like a removed spotlight. -## YAD: YouTube Auto Delay +## [YAD: YouTube Auto Delay](https://alexfreik.github.io/lsm/yad/) + Webpage where you can configure a delay for any YouTube stream, and it will automatically maintain it. It solves the skipping problem when because of network lag a stream with delay diff --git a/zam/package-lock.json b/package-lock.json similarity index 100% rename from zam/package-lock.json rename to package-lock.json diff --git a/zam/package.json b/package.json similarity index 78% rename from zam/package.json rename to package.json index e09fbe7..d28faad 100644 --- a/zam/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "scripts": { - "start": "npx nodemon server.js" + "start-zam": "npx nodemon zam/server.js" }, "devDependencies": { "express": "^4.18.2", diff --git a/zam/README.md b/zam/README.md index 4a2096b..13d5f15 100644 --- a/zam/README.md +++ b/zam/README.md @@ -2,14 +2,14 @@ ## Table of Contents -- [ZAM: Zoom Auto Monitoring](#zam-zoom-auto-monitoring) - - [Table of Contents](#table-of-contents) - - [Problem](#problem) - - [ZAM Solution](#zam-solution) - - [How to Use](#how-to-use) - - [Features](#features) - - [Development](#development) - - [Testing](#testing) +- [ZAM: Zoom Auto Monitoring](#zam-zoom-auto-monitoring) + - [Table of Contents](#table-of-contents) + - [Problem](#problem) + - [ZAM Solution](#zam-solution) + - [How to Use](#how-to-use) + - [Features](#features) + - [Development](#development) + - [Testing](#testing) ## Problem