{"id":25228094,"url":"https://github.com/questairdrop/depined","last_synced_at":"2026-05-06T04:32:07.676Z","repository":{"id":275441686,"uuid":"926094335","full_name":"questairdrop/depined","owner":"questairdrop","description":"Automate network or node operations for Depined Automation tool","archived":false,"fork":false,"pushed_at":"2025-02-02T15:07:15.000Z","size":136,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"main","last_synced_at":"2025-04-05T13:42:36.616Z","etag":null,"topics":["airdrop","depined","free","linux","network","node","vps"],"latest_commit_sha":null,"homepage":"https://t.me/questairdrop/24","language":"JavaScript","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/questairdrop.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null}},"created_at":"2025-02-02T14:43:50.000Z","updated_at":"2025-02-02T15:07:19.000Z","dependencies_parsed_at":"2025-02-02T15:43:05.895Z","dependency_job_id":null,"html_url":"https://github.com/questairdrop/depined","commit_stats":null,"previous_names":["questairdrop/depined"],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/questairdrop/depined","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/questairdrop%2Fdepined","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/questairdrop%2Fdepined/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/questairdrop%2Fdepined/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/questairdrop%2Fdepined/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/questairdrop","download_url":"https://codeload.github.com/questairdrop/depined/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/questairdrop%2Fdepined/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":32678596,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-05-06T02:33:58.958Z","status":"ssl_error","status_checked_at":"2026-05-06T02:33:39.611Z","response_time":117,"last_error":"SSL_connect returned=1 errno=0 peeraddr=140.82.121.5:443 state=error: unexpected eof while reading","robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":false,"can_crawl_api":true,"host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["airdrop","depined","free","linux","network","node","vps"],"created_at":"2025-02-11T09:51:17.127Z","updated_at":"2026-05-06T04:32:07.660Z","avatar_url":"https://github.com/questairdrop.png","language":"JavaScript","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Depined Automation tool\n\n[![License](https://img.shields.io/badge/license-MIT-blue.svg)](LICENSE)\n\n![banner](depined.jpg)\n\n## Features\n\n- **Automatic Ping connection maintenance**\n- **Supports multi-account management**\n- **Supports proxy configuration**\n\n## How to get a token\n\n1. Open the Depined dashboard [https://app.depined.org/dashboard](https://app.depined.org/dashboard)\n\n2. Log in with your email\n\n3. Press F12 to open the developer tools and find the Application tab\n\n4. Find `token` in Local Storage and copy its value\n\n5. Example : eyJhbGc , eyJhbGc\n\n### 1. Preparation\n\nMake sure your VPS meets the following conditions:\n- Operating system: Ubuntu/Debian/CentOS\n- Node.js version \u003e= 16\n- Memory \u003e= 1GB\n- Hard disk space \u003e= 10GB\n\n### 2. Install necessary software\n\n```bash\n# Update system\napt update \u0026\u0026 apt upgrade -y\n\n# Install Node.js (Ubuntu/Debian)\ncurl -fsSL https://deb.nodesource.com/setup_16.x | bash -\napt install -y nodejs\n\n# Install Git\napt install -y git\n\n# Install Screen (for background operation)\napt install -y screen\n```\n\n### 3. Download project\n\n```bash\n# Clone project\ngit clone https://github.com/questairdrop/depined.git\ncd depined\n\n# Install dependencies\nnpm install\n```\n\n### 4. Background run settings\n\n```bash\n# Create a new screen session\nscreen -S depined\n\n# Run a program\nnpm run start\n\n# Detach a screen session (press Ctrl+A then D)\n```\n\n### 5. Common commands\n\n```bash\n# View all screen sessions\nscreen -ls\n\n# Reconnect to a screen session\nscreen -r depined\n\n# End a program\n# 1. Reconnect to a screen session\n# 2. Press Ctrl+C to stop the program\n# 3. Type exit to close the session\n```\n\n### 6. Proxy settings instructions\n\nSupport two proxy formats:\n- Format 1: `ip:port:username:password`\n- Format 2: `ip:port`\n\nExample:\n```\n208.192.117.126:6533:username:password\n```\n\n### 7. Operation and maintenance\n\n1. **Log viewing**\n```bash\n# Real-time log viewing\ntail -f depined.log\n```\n\n2. **Automatic restart settings**\nCreate `restart.sh`:\n```bash\n#!/bin/bash\nwhile true; do\nnpm run start\nsleep 5\ndone\n```\n\nSet permissions and run:\n```bash\nchmod +x restart.sh\nscreen -S depined ./restart.sh\n```\n\n3. **Memory monitoring**\n```bash\n# View memory usage\nfree -h\n\n# View the resources occupied by the program\ntop | grep node\n   ```\n\n### 8. Troubleshooting\n\n1. **Program not responding**\n```bash\n# Find and kill all Node.js processes\npkill -f node\n\n# Restart the program\nscreen -S depined\nnpm run start\n```\n\n2. **Memory usage is too high**\n```bash\n# Clean up system cache\nsync \u0026\u0026 echo 3 \u003e /proc/sys/vm/drop_caches\n```\n\n3. **Network problem**\n```bash\n# Test network connection\nping app.depined.org\n\n# Check network status\nnetstat -tunlp | grep node\n```\n\n## Disclaimer\n\n- This script is for learning and communication only\n- Any consequences of using this script are at the user's own risk\n- The author is not responsible for any losses caused by using this script\n\n## License\n\nThis project is open source based on the MIT license - see the [LICENSE](LICENSE) file for detail\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fquestairdrop%2Fdepined","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fquestairdrop%2Fdepined","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fquestairdrop%2Fdepined/lists"}