https://github.com/phucngo2/twitter-downloader
🐦 A web application for downloading media from Twitter (X).
https://github.com/phucngo2/twitter-downloader
c-hashtag csharp dotnet svelte twitter-downloader x-downloader
Last synced: 3 months ago
JSON representation
🐦 A web application for downloading media from Twitter (X).
- Host: GitHub
- URL: https://github.com/phucngo2/twitter-downloader
- Owner: phucngo2
- License: mit
- Created: 2024-08-18T10:18:04.000Z (11 months ago)
- Default Branch: master
- Last Pushed: 2024-08-19T13:52:11.000Z (11 months ago)
- Last Synced: 2025-04-13T08:09:23.686Z (3 months ago)
- Topics: c-hashtag, csharp, dotnet, svelte, twitter-downloader, x-downloader
- Language: C#
- Homepage:
- Size: 99.6 KB
- Stars: 2
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# 📚 Twitter (X) Downloader 🚀
Yet another media downloader for tweets!Powered by `Svelte`, `.NET 8`, and `C hashtag version 12`.
## 🛠️ Built With







## 🎯 To-Dos
- [ ] Select media size to download.
## 🚧 Development Setup
### Prerequisites
Before starting, ensure you have the following tools and environments set up on your machine:
- .NET 8.0 SDK
- NodeJS
### ⭐ Back-end API Setup
#### 1. Configure Application Settings
Update the configuration files located at `X.API/appsettings.json` and `X.API/appsettings.Development.json` with appropriate settings.
#### 2. Restore Dependencies
At the root directory, restore the required NuGet packages by running:
```bash
dotnet restore
```
#### 3. Run the Application
Start the API with:
```bash
dotnet run --project X.API
```__🚀 The API will listen on:__
- HTTP: **http://localhost:5271**
- HTTPS: **https://localhost:7132**(You can change these ports in the `launchSettings.json` file located at `X.API/Properties/launchSettings.json`)
### ⭐ Front-end Web App Setup
#### 1. Install Dependencies
At the `X.WebApp` directory, install dependencies by running:
```bash
npm install
```
#### 2. Run the Application
Launch the application locally from the `X.WebApp` directory with:
```bash
npm run dev
```__🚀 The web app will listen on:__
**http://localhost:5173**