People Ping is a web application that allows users to select a friend and view their latest response and avatar. The application is built using Node.js, Express, and EJS for templating.
-
Clone the repository:
git clone <repository-url> cd <repository-directory>
-
Install dependencies:
bun install
Update the configuration in config.ts
with your specific settings, such as the Discord user token.
Start the server:
bun start
The application will be running on http://localhost:{port}.
Project Files
config.ts
: Configuration file for the application.src/server.ts
: Main server file that sets up the Express server and handles routes.src/views/index.ejs
: EJS template for the main page where users can select a friend.src/views/user.ejs
: EJS template for displaying the selected user's details.