@apiverve/seovalidator 1.1.4 → 1.1.6
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 +17 -17
- package/package.json +31 -31
package/README.md
CHANGED
|
@@ -47,8 +47,8 @@ Using the API client, you can perform requests to the API.
|
|
|
47
47
|
###### Define Query
|
|
48
48
|
|
|
49
49
|
```
|
|
50
|
-
var query = {
|
|
51
|
-
"url": "https://ebay.com"
|
|
50
|
+
var query = {
|
|
51
|
+
"url": "https://ebay.com"
|
|
52
52
|
};
|
|
53
53
|
```
|
|
54
54
|
|
|
@@ -67,21 +67,21 @@ api.execute(query, function (error, data) {
|
|
|
67
67
|
###### Example Response
|
|
68
68
|
|
|
69
69
|
```
|
|
70
|
-
{
|
|
71
|
-
"status": "ok",
|
|
72
|
-
"error": null,
|
|
73
|
-
"data": {
|
|
74
|
-
"url": "https://ebay.com",
|
|
75
|
-
"passed": false,
|
|
76
|
-
"entries": 4,
|
|
77
|
-
"output": [
|
|
78
|
-
"There are 15 'img' tag without alt attribute.",
|
|
79
|
-
"There are
|
|
80
|
-
"This HTML does not have 'meta name=descriptions' in 'head'",
|
|
81
|
-
"This HTML does not have 'meta name=keywords' in 'head'"
|
|
82
|
-
]
|
|
83
|
-
},
|
|
84
|
-
"code": 200
|
|
70
|
+
{
|
|
71
|
+
"status": "ok",
|
|
72
|
+
"error": null,
|
|
73
|
+
"data": {
|
|
74
|
+
"url": "https://ebay.com",
|
|
75
|
+
"passed": false,
|
|
76
|
+
"entries": 4,
|
|
77
|
+
"output": [
|
|
78
|
+
"There are 15 'img' tag without alt attribute.",
|
|
79
|
+
"There are 453 'a' tag without rel attribute.",
|
|
80
|
+
"This HTML does not have 'meta name=descriptions' in 'head'",
|
|
81
|
+
"This HTML does not have 'meta name=keywords' in 'head'"
|
|
82
|
+
]
|
|
83
|
+
},
|
|
84
|
+
"code": 200
|
|
85
85
|
}
|
|
86
86
|
```
|
|
87
87
|
|
package/package.json
CHANGED
|
@@ -1,32 +1,32 @@
|
|
|
1
|
-
{
|
|
2
|
-
"name": "@apiverve/seovalidator",
|
|
3
|
-
"version": "1.1.
|
|
4
|
-
"description": "SEO Validator is a simple tool for validating SEO metrics. It returns a list of issues that need to be fixed to improve the SEO metrics of a web page.",
|
|
5
|
-
"main": "index.js",
|
|
6
|
-
"scripts": {
|
|
7
|
-
"test": "mocha"
|
|
8
|
-
},
|
|
9
|
-
"repository": {
|
|
10
|
-
"type": "git",
|
|
11
|
-
"url": "git+https://github.com/apiverve/seovalidator-API.git"
|
|
12
|
-
},
|
|
13
|
-
"keywords": [
|
|
14
|
-
"seo validator","seo validator api","seo validator tool","seo validator software","seo validator service"
|
|
15
|
-
],
|
|
16
|
-
"author": "APIVerve <hello@apiverve.com> (http://apiverve.com/)",
|
|
17
|
-
"license": "MIT",
|
|
18
|
-
"bugs": {
|
|
19
|
-
"url": "https://github.com/apiverve/seovalidator-API/issues"
|
|
20
|
-
},
|
|
21
|
-
"homepage": "https://apiverve.com/marketplace/api/seovalidator",
|
|
22
|
-
"devDependencies": {
|
|
23
|
-
"mocha": "^
|
|
24
|
-
"chai": "^5.1.
|
|
25
|
-
"dotenv": "^16.4.
|
|
26
|
-
},
|
|
27
|
-
"dependencies": {
|
|
28
|
-
"node-fetch": "^3.3.2",
|
|
29
|
-
"promise": "^8.3.0",
|
|
30
|
-
"axios": "1.7.
|
|
31
|
-
}
|
|
1
|
+
{
|
|
2
|
+
"name": "@apiverve/seovalidator",
|
|
3
|
+
"version": "1.1.6",
|
|
4
|
+
"description": "SEO Validator is a simple tool for validating SEO metrics. It returns a list of issues that need to be fixed to improve the SEO metrics of a web page.",
|
|
5
|
+
"main": "index.js",
|
|
6
|
+
"scripts": {
|
|
7
|
+
"test": "mocha"
|
|
8
|
+
},
|
|
9
|
+
"repository": {
|
|
10
|
+
"type": "git",
|
|
11
|
+
"url": "git+https://github.com/apiverve/seovalidator-API.git"
|
|
12
|
+
},
|
|
13
|
+
"keywords": [
|
|
14
|
+
"seo validator","seo validator api","seo validator tool","seo validator software","seo validator service"
|
|
15
|
+
],
|
|
16
|
+
"author": "APIVerve <hello@apiverve.com> (http://apiverve.com/)",
|
|
17
|
+
"license": "MIT",
|
|
18
|
+
"bugs": {
|
|
19
|
+
"url": "https://github.com/apiverve/seovalidator-API/issues"
|
|
20
|
+
},
|
|
21
|
+
"homepage": "https://apiverve.com/marketplace/api/seovalidator?utm_source=npm",
|
|
22
|
+
"devDependencies": {
|
|
23
|
+
"mocha": "^11.0.1",
|
|
24
|
+
"chai": "^5.1.2",
|
|
25
|
+
"dotenv": "^16.4.7"
|
|
26
|
+
},
|
|
27
|
+
"dependencies": {
|
|
28
|
+
"node-fetch": "^3.3.2",
|
|
29
|
+
"promise": "^8.3.0",
|
|
30
|
+
"axios": "1.7.9"
|
|
31
|
+
}
|
|
32
32
|
}
|