This commit is contained in:
Keep Creating Online
2025-01-07 14:09:25 -05:00
parent d037e684bd
commit 26245ce7b2
3 changed files with 5 additions and 5 deletions

View File

@@ -1,4 +1,4 @@
# **NosTube: Building a Nostr + WebTorrent Video Streaming Client**
# **bitvid: Building a Nostr + WebTorrent Video Streaming Client**
This project plan outlines the steps to build a decentralized video streaming client using **Nostr** for metadata and **WebTorrent** for video distribution. It includes technical specifications, a framework outline, and a phased approach for development.

View File

@@ -3,7 +3,7 @@
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>NosTube MVP</title>
<title>bitvid</title>
<!-- TailwindCSS CDN -->
<link href="https://cdn.jsdelivr.net/npm/tailwindcss@2.2.19/dist/tailwind.min.css" rel="stylesheet">
<link href="css/style.css" rel="stylesheet">
@@ -12,7 +12,7 @@
<div id="app" class="container mx-auto px-4 py-8">
<!-- Header -->
<header class="mb-8">
<h1 class="text-3xl font-bold text-gray-800">NosTube</h1>
<h1 class="text-3xl font-bold text-gray-800">bitvid</h1>
<p class="text-gray-600">Decentralized video sharing</p>
</header>

View File

@@ -4,7 +4,7 @@ import { nostrClient } from './nostr.js';
import { torrentClient } from './webtorrent.js';
import { isDevMode } from './config.js';
class NosTubeApp {
class bitvidApp {
constructor() {
// Authentication Elements
this.loginButton = document.getElementById('loginButton');
@@ -898,6 +898,6 @@ class NosTubeApp {
}
}
export const app = new NosTubeApp();
export const app = new bitvidApp();
app.init();
window.app = app;