torapi
Version:
Unofficial API (backend) for RuTracker, Kinozal, RuTor and NoNameClub for receiving torrent files and detailed information about distribution by movie title, TV series or id, and also provides RSS news feed for all providers.
42 lines • 1.11 kB
JSON
{
"version": "0.3.0",
"configurations": [
{
"name": "Running dev using nodemon",
"type": "node",
"request": "launch",
"runtimeExecutable": "npm",
"runtimeArgs": [
"run",
"dev"
],
"console": "internalConsole"
},
{
"name": "Running on port 2024",
"type": "node",
"request": "launch",
"program": "${workspaceFolder}/main.js",
"args": [
"--port",
"2024"
],
},
{
"name": "Running using Proxy",
"type": "node",
"request": "launch",
"program": "${workspaceFolder}/main.js",
"args": [
"--proxyAddress",
"192.168.3.100",
"--proxyPort",
"9090",
"--username",
"TorAPI",
"--password",
"TorAPI"
]
}
]
}