const { Validator, FileInput, ConsoleOutput } = require('seo-validator')
const validator = new Validator()
const filePath = __dirname + '/index.html'
const input = new FileInput(filePath)
const output = new ConsoleOutput()
// Skip predefined rules
validator.skipRules([1,4,5])
validator.setInput(input)
validator.setOutput(output)
try {
validator
.validate()
.then(async () => {
await validator.getResult()
})
} catch (err) {
console.error(err)
}
Node.js 8.0 or greater
npm install seo-validator
- Detect if there are any
<img />
tags without alt attribute - Detect if there are any
<a />
tags without rel attribute - 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 - Detect if a HTML have more than one
<h1>
tag
const {
RuleExistTag,
RuleTagExistAttribute,
RuleTagExistAttributeValue,
RuleTagCountLimit,
RuleTagCountWithoutAttribute
} = require('seo-validator')
new RuleExistTag('head', 'title')
new RuleTagExistAttribute('head', 'img', 'alt')
new RuleTagExistAttributeValue('head', 'meta', 'name', 'description')
new RuleTagCountLimit('', 'strong', 15)
new RuleTagCountWithoutAttribute('', 'img', 'alt')
// Add rules
validator.addRule(new RuleExistTag('head', 'title'))
validator.addRule(new RuleTagExistAttribute('head', 'img', 'alt'))
const fs = require('fs')
const { FileInput, StreamInput } = require('seo-validator')
const filePath = __dirname + '/index.html'
const input = new FileInput(filePath)
//const stream = fs.createReadStream(filePath)
//const input = new StreamOutput(stream)
validator.setInput(input)
const fs = require('fs')
const { ConsoleOutput, FileOutput, StreamOutput } = require('seo-validator')
const filePath = __dirname + '/result.log'
const output = new ConsoleOutput()
//output = new FileOutput(filePath)
//const stream = fs.createWriteStream(filePath)
//const output = new StreamOutput(stream)
validator.setOutput(output)
const { Validator } = require('seo-validator')
const validator = new Validator(true)
//const validator = new Validator(false)
validator.skipRules([1,4,5])
const { FileInput } = require('seo-validator')
const filePath = __dirname + '/index.html'
const input = new FileInput(filePath)
validator.setInput(input)
const { ConsoleOutput } = require('seo-validator')
const filePath = __dirname + '/result.log'
const output = new ConsoleOutput()
validator.setOutput(output)
validator.addRule(new RuleExistTag('head', 'title'))
try {
validator
.validate()
.then(async () => {
await validator.getResult()
})
} catch (err) {
console.error(err)
}
const { Rule } = require('seo-validator')
class NewRule extends Rule {
constructor(rootTag, ...params) {
super(rootTag)
...
}
validate() {
// Write logic
this.isValid = true // or false
}
error() {
return !this.isValid ? `Error message` : ''
}
}