-
Notifications
You must be signed in to change notification settings - Fork 0
Installation
Nicholas Cheek edited this page Jun 14, 2025
·
7 revisions
Download the latest release for your platform:
curl -L "https://github.com/nickcheek/laravel-log-parser/releases/latest/download/logparse-darwin-amd64" -o logparse
sudo mv logparse /usr/local/bin/
sudo chmod +x /usr/local/bin/logparse### Linux
curl -L "https://github.com/nickcheek/laravel-log-parser/releases/latest/download/logparse-linux-amd64" -o logparse
sudo mv logparse /usr/local/bin/
sudo chmod +x /usr/local/bin/logparseDownload logparse-windows-amd64.exe from the releases page and add it to your PATH.
Use the automated installer:
curl -sSL https://raw.githubusercontent.com/nickcheek/laravel-log-parser/main/install.sh | bash
Requires Go 1.19+:
git clone https://github.com/nickcheek/laravel-log-parser.git cd laravel-log-parser go build -o logparse parse.go sudo mv logparse /usr/local/bin/
If you have Go installed:
go install github.com/nickcheek/laravel-log-parser@latest
Test the installation:
logparse --help logparse --version
To update to the latest version, simply repeat the installation process. The tool will automatically replace the existing binary.