example image

Netlify Status

Features

Commands

Develop:

npm run dev

Preview:

npm test

Deploy:

npm run build

NEW

Get a JSON-encoded list of Netlify apps:

ntl sites:list --json > _data/sites-raw.json

Extract useful values by piping the raw sites data through jq

jq '[.[] | {
  label:.custom_domain,
  url,
  screenshot_url,
  repo_url:.build_settings.repo_url,
  created_at,
  updated_at
}]' _data/sites-raw.json > _data/sites.json