sitetidy
v0.1.0
Published
Lightweight CLI for auditing websites for SEO, metadata, and configuration best practices.
Maintainers
Readme
SiteTidy CLI
A tiny, legitimate, production-ready CLI for lightweight website auditing.
SiteTidy is a modern toolset for web developers to audit websites for SEO, security, metadata, and configuration best practices. This CLI allows you to run lightweight local audits quickly from your terminal.
Note: This is the lightweight CLI audit. A full, comprehensive audit tool with deeper checks and integrations will be available soon at sitetidy.app.
Installation
You can install the CLI globally via npm:
npm install -g sitetidyAlternatively, you can run it on-demand using npx:
npx sitetidy audit https://example.comUsage
Run a lightweight audit on any URL:
sitetidy audit https://example.comOptions
--json: Output the audit results in machine-readable JSON format.--no-color: Disable color output in the terminal.--timeout <ms>: Set a custom request timeout in milliseconds (default: 10000).
Example JSON Output
{
"url": "https://example.com",
"finalUrl": "https://example.com/",
"score": 82,
"durationMs": 214,
"checks": [
{
"id": "https",
"status": "pass",
"label": "HTTPS",
"message": "Site uses HTTPS."
}
],
"summary": {
"passed": 6,
"warnings": 2,
"failed": 0
}
}Links
- Homepage: https://sitetidy.app
- Source Code: https://github.com/sevenvectors/sitetidy-cli
License
MIT License. See LICENSE for more details.
