No description
  • JavaScript 91.1%
  • PHP 3.2%
  • TypeScript 3%
  • Vue 2.6%
Find a file
github-actions[bot] b87ef617fd
Merge pull request #2012 from nextcloud/dependabot/npm_and_yarn/fast-uri-3.1.2
chore(deps-dev): bump fast-uri from 3.1.0 to 3.1.2
2026-05-08 23:44:37 +00:00
.github chore: update workflows 2026-03-13 11:30:55 +01:00
.tx
appinfo feat(deps): Add Nextcloud 34 support on master 2026-01-22 10:31:29 +01:00
css chore(assets): Recompile assets 2026-03-12 19:44:12 +00:00
img
js chore(assets): Recompile assets 2026-05-08 14:10:23 +00:00
l10n fix(l10n): Update translations from Transifex 2026-05-04 01:23:43 +00:00
lib fix(LogController): prevent iterator from jumping over the last item 2025-12-22 11:02:09 +01:00
LICENSES chore: update licenses information 2025-11-28 22:21:36 +01:00
screenshots
src fix: lint with new rules 2026-04-13 10:21:23 +02:00
templates
tests
.gitattributes
.gitignore
.l10nignore
.php-cs-fixer.dist.php
AUTHORS.md
codecov.yml
composer.json
composer.lock chore(dev-deps): Bump nextcloud/ocp package 2026-05-03 03:21:11 +00:00
eslint.config.mjs
Makefile
package-lock.json chore(deps-dev): bump fast-uri from 3.1.0 to 3.1.2 2026-05-08 23:43:16 +00:00
package.json chore(deps-dev): bump @vitest/coverage-istanbul from 4.1.4 to 4.1.5 2026-04-25 01:04:10 +00:00
psalm.xml ci(psalm): Ignore psalm issues in vendor libs 2026-02-16 14:54:31 +01:00
README.md
REUSE.toml chore: update licenses information 2025-11-28 22:21:36 +01:00
tsconfig.json
vite.config.ts

Log Reader

REUSE status

screenshot

Log reader for Nextcloud with clean exception display, infinite scrolling and more.

Install instructions

Installed by default

Log Reader is installed by default in recent versions of Nextcloud so you don't have to do anything else to use the app.

Install the latest stable release manually

  • Download the last pre-build release
  • Extract the tar.gz into the apps folder

Install from source

  • clone the repo in the apps folder
  • Run make in the logreader folder

Developing

For building the app node and npm are required

Building

Building the app can be done using the Makefile

make

Automatic rebuilding during development

During development the webpack dev server can be used to automatically build the code for every change.

Since the compiled source from the webpack dev server need to be injected in the regular Nextcloud sources a proxy setup is needed to combine things.

If your local Nextcloud setup runs at http://localcloud an nginx configuration for the proxy would look like the following:

server {
    listen 81;
    server_name localcloud;

    location /apps/logreader/build/main.js {
        proxy_pass http://localhost:3000/build/main.js;
    }
    location /apps/logreader/build/main.css {
        return 404;
    }
    
    location /build {
        proxy_pass http://localhost:3000;
    }
    location /__webpack_hmr {
        proxy_set_header Host $host;
        proxy_pass http://localhost:3000;
        proxy_set_header Connection '';
        proxy_http_version 1.1;
        chunked_transfer_encoding off;
        proxy_buffering off;
        proxy_cache off;
    }

    location / {
        proxy_set_header Host $host;
        proxy_hide_header Content-Security-Policy;
        proxy_pass http://localcloud/;
    }
}

This will run the proxy at http://localcloud:81/

With the proxy configured you can start the webpack dev server and specify where the Nextcloud proxy is.

PROXY_URL="http://localcloud:81/ make watch