How to Parse Node.js http Errors?

How can this be accomplished in my Wappler project? I want to review yesterday's access and error logs for example.

Back in my day....apache was needed to handle http requests and logged access and errors to disk. I was today years old when I learned that Node.js handles the http requests and Apache is NOT installed anywhere in my Wappler project or Docker container. However, I am also now aware that Node.js doesn't include standard access and error logging.

So what is typically done when using Node.js, to review logs?

This is going to be a fun trip

Even though Apache is not used, it's common to use other web servers (acting as reverse proxies) such as nginx or Traefik, so you'd check the access logs of those

In addition to access logs, there's something called Sentry that logs errors to Sentry service (or equivalent), but this is not natively integrated in Wappler yet. I use a GlitchTip instance (which implements the Sentry protocol) on PikaPods, and half followed some tutorial somewhere on this forum

Encouraging. I did install Traefik to automate the SSL cert creation and install. I will explore Traefik in more detail.

Btw Traefik is overcomplicated, you can check Caddy Server

1 Like

Advanced Logger Extension logs http request errors

@tbvgl Reading your post now. Thank you.

1 Like