seo_defect_check
v1.1.0
Published
Basic module for checking SEO HTML defects
Readme
SEO HTML defect checker
Basic module for checking SEO HTML defects
Built for
Status
Installation
This is node.js libarary. Install nodejs first, then:
npm install seo_defect_check
or
yarn add seo_defect_check
How to use?
There are 7 defined rules that you can use to validate HTML.
- Detect if there are any
<img />tags without alt attribute - Detect if there are any
<a />tags without rel attribute - In tag
- Detect if there is any header that doesn’t have
<title>tag - Detect if there is any header that doesn’t have
<meta name=“descriptions” … />tag - Detect if there is any header that doesn’t have
<meta name=“keywords” … />tag
- Detect if there are more than 15
<strong>tag in HTML (15 is a value should be configurable by user) - Detect if a HTML have more than one
<H1>tag.
For example:
```javascript
var seo = require('seo_defect_check')
seo.Parsing()Features
- [x] Detect basic HTML tag defect by the defined rules
Contribute
Let people know how they can contribute into your project.
License
A short snippet describing the license (MIT, Apache etc)
MIT © [jimmyko]
