NodeJS SpigotMC Plugin/Resource Updater/Scrapper
Introduction
A Simple Nodejs script to auto update plugins from Spigot (Bypassing cloudflare protection) It is recommended to run this script once per day or a few hours gap. Auto Saves and Restores Cookie Sessions
Instructions
- Clone the repo
- Install npm packages via
npm i
- Change
plugins.json
as per your needs - Run
node index.js
to execute the script
Screenshot
Config File
[
{
"name": "Action Bar Health",
"resource_id": 2661,
"auto_update": true,
"path": "plugins/ActionHealth.jar"
},
{
"name": "APortalGun",
"resource_id": 75519,
"auto_update": true,
"path": "plugins/APortalGun.jar"
}
]
Name can be anything you wish
Resource ID can be found in the Plugin's URL, after the last dot(.)
Path is the location where the jar file will be stored
Result
Debugging
Try setting { headless: false }
in index.js
inside bypassCloudFlare
function and see what's going on behind the scenes.