Installation
Install Meteor in one of the following ways. Once installed, head to the Quickstart to run your first recipe.
Homebrew
brew install raystack/tap/meteor
# verify the install
meteor version
# list all supported extractors, sinks, and processors
meteor plugins listBinary releases
Download the binary for your platform from the GitHub releases page. There is no installer; place the binary somewhere on your PATH (for example /usr/local/bin).
Verify with:
meteor versionDocker
# pull the image
docker pull raystack/meteor
# see available commands
docker run --rm raystack/meteor
# list all extractors
docker run --rm raystack/meteor meteor plugins list --type extractorBuild from source
Requires git and Go 1.26 or above.
git clone https://github.com/raystack/meteor.git
cd meteor
make build
./meteor --help