One Hat Cyber Team
Your IP :
216.73.217.131
Server IP :
185.33.55.30
Server :
Linux cl30.webspacecontrol.com 5.14.0-611.38.1.el9_7.x86_64 #1 SMP PREEMPT_DYNAMIC Tue Mar 10 17:21:28 EDT 2026 x86_64
Server Software :
Apache
PHP Version :
8.1.34
Buat File
|
Buat Folder
Eksekusi
Dir :
~
/
home
/
esetkocsi
/
www
/
node_modules
/
dotenv
/
types
/
View File Name :
test.ts
import { config, parse } from "dotenv"; const env = config(); const dbUrl: string | null = env.error || !env.parsed ? null : env.parsed["BASIC"]; config({ path: ".env-example", encoding: "utf8", debug: true }); const parsed = parse("NODE_ENV=production\nDB_HOST=a.b.c"); const dbHost: string = parsed["DB_HOST"]; const parsedFromBuffer = parse(new Buffer("JUSTICE=league\n"), { debug: true }); const justice: string = parsedFromBuffer["JUSTICE"];