Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/rizkyngrh23/teralink-generator
Terabox direct download link generatorβοΈπ
https://github.com/rizkyngrh23/teralink-generator
javascript link-generator terabox-direct-links-generator
Last synced: 15 days ago
JSON representation
Terabox direct download link generatorβοΈπ
- Host: GitHub
- URL: https://github.com/rizkyngrh23/teralink-generator
- Owner: rizkyngrh23
- License: mit
- Created: 2024-11-11T09:41:49.000Z (about 2 months ago)
- Default Branch: main
- Last Pushed: 2024-11-22T08:56:53.000Z (about 1 month ago)
- Last Synced: 2024-11-22T09:30:37.571Z (about 1 month ago)
- Topics: javascript, link-generator, terabox-direct-links-generator
- Language: JavaScript
- Homepage: https://teralink-generator-rizkys-projects-0e5d4b24.vercel.app
- Size: 20.5 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# **Teralink GeneratorβοΈ**
### **Description**
**Teralink Generator** is a web application that allows users to generate direct download links from Terabox URLs. The application uses a backend API to convert Terabox sharing links into downloadable links and provides an easy-to-use frontend for users.---
## **Table of Contents**
- [Description](#description)
- [Demo](#demo)
- [Features](#features)
- [Technologies Used](#technologies-used)
- [Project Structure](#project-structure)
- [Installation](#installation)---
## **Demo**
You can try out the live version of the application here:[**https://rizkyngrh23.my.id/teralink-generator**](https://teralink-generator-9mo59doij-rizkys-projects-0e5d4b24.vercel.app/)
---
## **Features**
- Generate direct download links from Terabox sharing URLs.
- Simple and responsive frontend interface.
- Clipboard support for copying the generated link.---
## **Technologies Used**
- **Frontend**: HTML, CSS, JavaScript
- **Backend**: Node.js, Express
- **API Fetching**: `node-fetch`
- **Hosting**: Vercel
- **DNS & SSL**: Cloudflare---
## **Project Structure**
```
.
βββ api
βΒ Β βββ generate-link.js
βββ LICENSE
βββ package.json
βββ package-lock.json
βββ public
βΒ Β βββ index.html
βΒ Β βββ script.js
βΒ Β βββ style.css
βββ vercel.json
```---
## **Installation**
### **Step 1: Clone the Repository**
```bash
git clone https://github.com/rizkyngrh23/teralink-generator.git
cd teralink-generator
```### **Step 2: Install Dependencies**
```bash
npm install
```### **Step 3: Set Up Environment Variables**
Create a ``.env`` file in the root directory with the following content:
```bash
RAPIDAPI_KEY=your_rapidapi_key
PORT=3000
```### **Step 4: Run the Application**
**Option 1: Using Node.js**
To run the backend server locally:```bash
node api/generate-link.js
```
To serve the frontend:
```bash
npx http-server public
```**Option 2: Using Docker Compose**
If you have Docker installed, you can run the entire application using Docker Compose:
```bash
docker-compose up -d
```