diff --git a/README.md b/README.md index c6e0dda..c5caa19 100644 --- a/README.md +++ b/README.md @@ -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. diff --git a/src/index.html b/src/index.html index 5387a16..00647ec 100644 --- a/src/index.html +++ b/src/index.html @@ -3,7 +3,7 @@ - NosTube MVP + bitvid @@ -12,7 +12,7 @@
-

NosTube

+

bitvid

Decentralized video sharing

diff --git a/src/js/app.js b/src/js/app.js index 04d95b9..10e6f64 100644 --- a/src/js/app.js +++ b/src/js/app.js @@ -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;