Skip to content

Instantly share code, notes, and snippets.

View LT-SYAII's full-sized avatar
💭
hanya sharing hal yang bisa di share.

BANG SYAII LT-SYAII

💭
hanya sharing hal yang bisa di share.
  • Akiraa-Team
View GitHub Profile
@LT-SYAII
LT-SYAII / spotmate.js
Last active November 12, 2025 03:31
Spotify downloader (spotmate.online)
import axios from "axios";
class Spotdl {
constructor(url) {
if (!url) throw new Error("Mana URL nya min");
this.url = url;
this.baseURL = "https://spotmate.online";
this.userAgent =
"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120 Safari/537.36";
}
@LT-SYAII
LT-SYAII / example.js
Created October 15, 2025 01:41
Example for use web Proxy untuk kebutuhan imam
import axios from "axios";
const PROXY_URL = "https://proxied.syaii.my.id"
// - Example Method GET
const response = await axios.get(`${PROXY_URL}/?url=https://ipwho.is`, {
headers: {
"Request-By": "Bang_Syaii"
}
}).catch(e => e.response);