Skip to content

Installation

Jonathan Caicedo edited this page May 15, 2026 · 3 revisions

Welcome to my fork. I've been maintaining and adding upgrades to this project.

Installation

Install Node.js

Here’s a quick guide for installing Node.js on Windows, Linux, Raspberry Pi, and macOS

Windows

Linux or Raspberry Pi

  • Open Terminal and make sure your packages are up to date
sudo apt update && apt upgrade
  • Install Node.js LTS version
sudo apt install nodejs npm

macOS

  • Open Terminal.
  • Install Homebrew if you don’t have it:
/bin/bash -c "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/HEAD/install.sh)"
  • Install Node.js (LTS version) using Homebrew:
brew install node

Install zap2xml dependencies and build

You can either download the Zip file and extract to the folder you wish to use Or use git clone from Command Prompt to download to a zap2xml folder automatically

Open Command Prompt/Terminal

If you are using git clone go to the directory you wish to download to Then

git clone https://github.com/JCBird1012/zap2xml.git

Now that it's downloaded in Command Prompt/Terminal change to the zap2xml directory and install then build

cd /path/to/zap2xml
npm install
npm run build

See How to Run and Scheduling for additional details.

Clone this wiki locally