@akotliar/sitemap-qa 1.0.0-alpha.0 → 1.0.0-alpha.2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +6 -5
- package/dist/index.cjs +1985 -71
- package/dist/index.cjs.map +1 -1
- package/dist/index.js +1962 -71
- package/dist/index.js.map +1 -1
- package/package.json +65 -65
package/README.md
CHANGED
|
@@ -1,10 +1,11 @@
|
|
|
1
1
|
# Sitemap-QA
|
|
2
2
|
|
|
3
|
-
> **Automated sitemap analysis for QA teams** — Detect test/qa/dev/staging URLs, admin paths, sensitive parameters, and URLs that shouldn't be publicly indexed.
|
|
4
|
-
|
|
5
3
|
[](LICENSE)
|
|
6
4
|
[](package.json)
|
|
7
5
|
[](https://www.typescriptlang.org/)
|
|
6
|
+
[](https://www.npmjs.com/package/@akotliar/sitemap-qa)
|
|
7
|
+
|
|
8
|
+
> ⚠️ **Alpha Release** — This tool is currently in active development. Features and APIs may change. Feedback and contributions are welcome!
|
|
8
9
|
|
|
9
10
|
Sitemap-QA is a command-line tool that automatically discovers, parses, and analyzes website sitemaps to identify potential quality issues, security risks, and configuration problems. Built for QA teams to validate deployments, catch environment leakage, and identify URLs that shouldn't be publicly indexed.
|
|
10
11
|
|
|
@@ -29,7 +30,8 @@ Perfect for CI/CD pipelines, pre-release validation, and security audits.
|
|
|
29
30
|
### Installation
|
|
30
31
|
|
|
31
32
|
```bash
|
|
32
|
-
|
|
33
|
+
# Install the alpha version globally
|
|
34
|
+
npm install -g @akotliar/sitemap-qa@alpha
|
|
33
35
|
```
|
|
34
36
|
|
|
35
37
|
### Basic Usage
|
|
@@ -68,7 +70,6 @@ sitemap-qa analyze https://example.com --verbose
|
|
|
68
70
|
| **Protocol Inconsistency** | Medium | HTTP URLs in HTTPS sitemaps | ❌ Always detected |
|
|
69
71
|
| **Domain Mismatch** | Medium | Different domains in sitemap | ❌ Always detected |
|
|
70
72
|
|
|
71
|
-
**Note:** Admin path patterns now properly match URLs with query parameters (e.g., `/admin?id=123`).
|
|
72
73
|
|
|
73
74
|
### Output Formats
|
|
74
75
|
|
|
@@ -117,7 +118,7 @@ The HTML report provides an interactive, visually appealing view with:
|
|
|
117
118
|
## 🛠️ CLI Options
|
|
118
119
|
|
|
119
120
|
```
|
|
120
|
-
Usage: sitemap-qa analyze [options]
|
|
121
|
+
Usage: sitemap-qa analyze <url> [options]
|
|
121
122
|
|
|
122
123
|
Analyze a website's sitemap for quality issues
|
|
123
124
|
|