你說:
Is there any web app of anonymous chat in the github repository? I need a "temporary place" for purely exchanging messages and no complex functions are needed.
Yes, there are several GitHub-hosted web applications designed for anonymous, temporary messaging without complex features. Here are some options you might consider:
Fireflow Chat Rooms
An anonymous chat platform where users can create private rooms with secret codes. No data is stored on the server; everything is erased upon logout. Ideal for quick, secure group chats. GitHub
Simple Chat
A minimalistic Node.js app utilizing the Faye pub/sub library for ephemeral chat rooms. Users are assigned unique colors and UUIDs per session, ensuring anonymity. No messages are stored persistently. GitHub+1SecretChat+1
Mysterio
A Python-based anonymous chat web app that supports real-time messaging. No login is required, and the app is designed for quick, temporary conversations. GitHub
FlackApp
Built with Flask and Socket.IO, this app allows users to create and join chat rooms anonymously. Messages are not stored on the server, ensuring privacy. Hemendra Khatiк+3Flutter Awesome+3GitHub+3
SecretChat
A browser-based anonymous messaging service that uses P2P connections and end-to-end encryption. No data is stored on the server, and messages are removed after the session ends. SecretChat
These applications are suitable for quick, anonymous communication without the need for complex features or account creation. Let me know if you need assistance with setting up any of these apps or have other preferences!
Certainly! Here are some GitHub repositories featuring Node.js-based anonymous chat applications with minimal dependencies, ideal for quick and simple messaging:
LionyxML/anonchat
A minimal WebSocket-based anonymous chat server/client using TypeScript/JavaScript. It supports customizable nicknames, channel joining/parting, and user listing. The server and client can be run independently. GitHub
m1k1o/chat
A lightweight, plug-and-play, self-hosted Node.js chat application using Socket.io. It requires no user accounts, offers optional message history caching, and supports file sharing without storing data on the server. GitHub
Xtrendence/X-Anonymous
An anonymous Node.js chat web application that employs end-to-end encryption using RSA keys. All encryption occurs client-side, ensuring the server has no access to message content. Messages are stored locally in the browser's local storage. GitHub
aman29271/Anonymous-chat-app
A super simple anonymous chat app built with Node.js and Socket.io. It offers basic real-time messaging features without complex functionalities. GitHub+1GitHub+1
Harsh062/anon-chat-app-react-node
A simple anonymous chat application utilizing React.js, Node.js, and Socket.io. It provides real-time messaging with random color-coded usernames for anonymity. GitHub+3GitHub+3GitHub+3
These repositories offer a range of features from basic real-time messaging to end-to-end encryption, all built with minimal dependencies. Depending on your specific requirements, such as the need for encryption or ease of setup, you can choose the one that best fits your needs.