Documentation Index
Fetch the complete documentation index at: https://docs.screenjson.com/llms.txt
Use this file to discover all available pages before exploring further.
screenjson-export
Free, open-source reference CLI. FDX / Fountain / FadeIn → ScreenJSON.
Release binary
Docker
Go install
From source
Latest: v1.0.0.curl -sL https://github.com/screenjson/screenjson-export/releases/download/v1.0.0/screenjson-export_$(uname -s)_$(uname -m).tar.gz | tar -xz
sudo mv screenjson-export /usr/local/bin/
docker pull screenjson/export:latest
go install screenjson/export/cmd/screenjson-export@latest
git clone https://github.com/screenjson/screenjson-export.git
cd screenjson-export
go build -trimpath -o screenjson-export ./cmd/screenjson-export
sudo mv screenjson-export /usr/local/bin/
screenjson-cli
Commercial, full-featured CLI.
docker pull screenjson/cli:latest
docker run --rm screenjson/cli help
git clone https://github.com/screenjson/screenjson-cli.git
cd screenjson-cli
go build -o screenjson ./cmd/screenjson
sudo mv screenjson /usr/local/bin/
PDF import additionally requires Poppler:# macOS
brew install poppler
# Debian / Ubuntu
sudo apt-get install poppler-utils
screenjson-ui
Embeddable browser viewer.
npm install screenjson-ui
<script src="https://cdn.screenjson.com/ui/screenjson-ui.js"></script>
Greenlight
Batch microservice. See Greenlight → Deploy for the full instructions.
git clone https://github.com/screenjson/greenlight.git
cd greenlight
cp env.example backend/.env
docker build -f deployment/Dockerfile -t screenjson/greenlight:latest .
cd deployment && docker-compose up