Skip to content
This repository was archived by the owner on Nov 20, 2025. It is now read-only.

Commit 8623364

Browse files
committed
Renamed to Hello
1 parent 7ddfa32 commit 8623364

18 files changed

+332
-382
lines changed

CONTRIBUTIONS.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,16 +1,16 @@
1-
## Ahey Contributions
1+
## Hello Contributions
22

33
Before opening a PR, please read the following guidelines.
44

55
## Current Contribution Status
66

7-
Ahey is currently **not actively accepting contributions**.
7+
Hello is currently **not actively accepting contributions**.
88

9-
The primary purpose of making the Ahey source code available is:
9+
The primary purpose of making the Hello source code available is:
1010

1111
- To allow others to use the code for personal projects or to satisfy their curiosity.
1212
- To ensure code transparency, keeping the app honest about its actions.
1313

1414
### Support the Project
1515

16-
If you would like to support Ahey and its development, consider sponsoring in [Github sponsors](https://github.com/sponsors/vasanthv). It helps in the development and maintenance of the application. Your support is always appreciated!
16+
If you would like to support Hello and its development, consider sponsoring in [Github sponsors](https://github.com/sponsors/vasanthv). It helps in the development and maintenance of the application. Your support is always appreciated!

LICENSE

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
The MIT License (MIT)
22

3-
Copyright (c) 2019 Vasanth V <vasanth@ahey.net>
3+
Copyright (c) 2019 Vasanth V <imvasanthv@gmail.com>
44

55
Permission is hereby granted, free of charge, to any person obtaining a copy
66
of this software and associated documentation files (the "Software"), to deal

README.md

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,27 +1,27 @@
1-
# Ahey (previously Hello)
1+
# Hello
22

33
## A free, p2p, group video call app for the web. No signups. No downloads. Works in all major browsers.
44

5-
Ahey is built on WebRTC, enabling peer-to-peer video, audio, and text communication. Group calls use a mesh topology, where each participant connects directly to every other participant. This means there’s no central server handling the media streams, which keeps things private and low-latency, but also makes performance dependent on the number of participants and their internet speeds. Call quality tends to decrease as more people join, with the sweet spot typically being around 6 to 8 participants on a high-speed connection.
5+
Hello is built on WebRTC, enabling peer-to-peer video, audio, and text communication. Group calls use a mesh topology, where each participant connects directly to every other participant. This means there’s no central server handling the media streams, which keeps things private and low-latency, but also makes performance dependent on the number of participants and their internet speeds. Call quality tends to decrease as more people join, with the sweet spot typically being around 6 to 8 participants on a high-speed connection.
66

77
### Key Features
88

99
- **No Sign-up Required:** Join or create video calls instantly without accounts or passwords.
1010
- **Peer-to-Peer WebRTC:** Low-latency direct streaming between participants.
11-
- **Unique Channel URLs:** Easily shareable links like `ahey.io/channel-id`.
11+
- **Unique Channel URLs:** Easily shareable links like `domain/channel-id`.
1212
- **Embed Anywhere:** Embed calls on any website or app using an `<iframe>`.
1313
- **Free and Browser-Based:** 100% free, runs in modern browsers with no downloads.
1414

1515
---
1616

1717
### Wiki
1818

19-
Please refer [wiki page](https://github.com/vasanthv/ahey/wiki) for more documentation.
19+
Please refer [wiki page](https://github.com/vasanthv/hello/wiki) for more documentation.
2020

2121
### Contributions
2222

23-
Please refer <a href="https://github.com/vasanthv/ahey/blob/master/markdowns/CONTRIBUTIONS.md">CONTRIBUTIONS.md</a> for more info.
23+
Please refer <a href="https://github.com/vasanthv/hello/blob/master/markdowns/CONTRIBUTIONS.md">CONTRIBUTIONS.md</a> for more info.
2424

2525
### LICENSE
2626

27-
<a href="https://github.com/vasanthv/ahey/blob/master/LICENSE">MIT License</a>
27+
<a href="https://github.com/vasanthv/hello/blob/master/LICENSE">MIT License</a>

SECURITY.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ We release security updates only for the latest stable version. Please ensure yo
99
If you discover a security vulnerability, please do the following:
1010

1111
- **Do not** open a public issue.
12-
- Email us at [hello@ahey.net] with details of the vulnerability.
12+
- Email us at [imvasanthv@gmail.com] with details of the vulnerability.
1313
- Provide as much information as possible to help us understand and resolve the issue quickly.
1414

1515
We will respond as soon as possible and keep you updated on the progress. Once the vulnerability is resolved, we will publish a security update and acknowledge your contribution if desired.

init.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,6 +36,6 @@ app.use("/", routes);
3636

3737
// Start the server and log status
3838
server.listen(PORT, null, () => {
39-
console.log("Ahey server started");
39+
console.log("Hello server started");
4040
console.log({ port: PORT, node_version: process.versions.node });
4141
});

package-lock.json

Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,13 @@
11
{
2-
"name": "ahey",
2+
"name": "hello",
33
"version": "2.0.11",
44
"description": "A free group video conference app for the web. No sign ups. No downloads.",
55
"main": "init.js",
66
"scripts": {
77
"start": "node ./scripts/pre-start.js && node init.js",
88
"test": "echo \"Error: no test specified\" && exit 1",
99
"format:ejs": "prettier --write \"views/**/*.ejs\"",
10-
"docker": "docker build -t ahey . && docker run -p 824:824 ahey"
10+
"docker": "docker build -t hello . && docker run -p 824:824 hello"
1111
},
1212
"author": "",
1313
"license": "ISC",

public/ice-config.js

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,6 @@ window.ICE_SERVERS = [
99
{ urls: "stun:stun3.l.google.com:19302" },
1010
{ urls: "stun:stun4.l.google.com:19302" },
1111
{ urls: "stun:stun.relay.metered.ca:80" },
12-
{ urls: "stun:turn.ahey.net:3478" },
1312

1413
// TURN servers are needed as a fallback relay server when direct peer-to-peer communication isn’t possible.
1514
// It relays data between peers, ensuring connectivity even in restrictive network conditions.

public/icomoon/Ahey - Video conference.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"metadata": {
33
"created": 1752351710732,
4-
"name": "Ahey - Video conference",
4+
"name": "Hello - Video conference",
55
"lastOpened": 1752351910410
66
},
77
"iconSets": [

public/manifest.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
2-
"name": "Ahey",
3-
"short_name": "Ahey",
2+
"name": "Hello",
3+
"short_name": "Hello",
44
"description": "A video chat app for the web.",
55
"icons": [
66
{

0 commit comments

Comments
 (0)