spersico / nerdTail

A simple tool to see logs in the browser

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

nerdTail

A simple tool to see logs in the browser πŸ›

nerdTail is a command line utility that grabs every line in stdin from a process, and broadcasts it over UDP. Tail log files, app output, or whatever you wish. See multiple streams in the browser, in realtime.

Heavily inspired by rtail (we copied a lot of the implementation from there).

The way it works is that you pipe the output of a process to nerdTail, then you open nerdTailServer and then you open the browser to http://localhost:9999 (or whatever port you specify).

This is very much a work in progress, and it's ABSOLUTELY NOT READY for production use.

βš™οΈ The way it works:

  • nerdTail expects to be piped a stream of logs from a process, and when that happens, it will send those logs through a UDP socket that nerdTailServer listens.
# Example:
YOUR_APP 2>&1 | nerdTail <OTHER OPTIONS>
  • nerdTailServer listens for logs that were sent, and sends them to a frontend client (through websocket). The client (a SolidJS SPA) displays the logs on the browser.

β˜‘ TODO LIST (in order of priority):

  • Make it so that the nerdTailServer runs both the frontend and the BFF server at the same time (prefferably in the same process) (right now you've got to run nerdTailServer and npm run:dev)
  • Add filtering for logs in the UI, improve storing and handling data.
  • Add lots of styling improvements
  • Add tests
  • Add more documentation
  • Figure out if this works across networks

πŸ§‘πŸ»β€πŸ’» Developing Locally

There are 3 scripts in the package.json file that should help:

  • test:publisher: runs a test publisher that sends a bunch of logs to the server constantly (test:publisher:json to send JSON logs)
  • dev:server: runs the server that acts as the subscriber to the publishers
  • dev:client: runs the frontend server, that connects to the subscriber server (you only need to run this while developing).

Running it locally as if it were installed on your machine

You can use the test:publisher and test:server scripts to test some log source locally, or install this locally and use it as a CLI tool:

$ npm install

And then

$ npm link

Then you can run nerdTail and nerdTailServer from anywhere in your system.

πŸ™‹πŸ» FAQ

Why do you have separate server for the frontend and the subscriber-backend?

Because a browser app can't interact with UDP sockets directly. So we need to have a separate server that can receive the UDP packets and then broadcast them to the browser (through websockets, but it could be anything really).

Why use Solid?

It's supposed to be very fast, and I want this to be able to handle large loads of data

About

A simple tool to see logs in the browser


Languages

Language:JavaScript 58.2%Language:TypeScript 32.5%Language:SCSS 3.8%Language:HTML 2.8%Language:CSS 2.7%