Skip to content

asleepace/consoledump.io

Repository files navigation

A simple online interface which you can pipe debug logs from any environment to your browser!

Screenshot 2025-02-10 at 11 42 50 PM

Website is live at https://consoledump.io

Usage

Go to the website and start a new session (one click), then simply pipe data like so:

// get from website
const sessionId = '<your_session_id>';

// run this code anywhere to see logs appear in real time!
fetch(`https://consoledump.io/${sessionId}`, {
  method: 'POST',
  body: JSON.stringify({
    data: "hello world"
  })
})

General

Hosted on the same server as asleepace.com at 192.241.216.26, to connect run the following

# connect to remote server
ssh [email protected]

# open console dump directory
cd ~/consoledump.io

# fetch latest version
git stash .
git pull --force

# build application
bun install

# restart application
pm2 restart consoledump.io

Qucik Start

# run in development mode
bun run dev

#or, run in production mode
bun run start

Helpful Resources