Skip to content
forked from thomasdavis/w3cjs

A npm package for testing files or url's again the wc3 validator

License

Notifications You must be signed in to change notification settings

glasspear/w3cjs

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

22 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Build Status

w3cjs

A node.js library for testing files or url's against the w3c html validator.

Installation

npm install w3cjs

Usage

var w3cjs = require('w3cjs');

var results = w3cjs.validate({
	file: 'demo.html', // file can either be a local file or a remote file
	//file: 'http://html5boilerplate.com/',
	output: 'json', // Defaults to 'json', other option includes html
	callback: function (res) {
		console.log(res);
		// depending on the output type, res will either be a json object or a html string
	}
});

Example async testing with Mocha

var w3cjs = require('w3cjs');
describe('html validation', function(){
  it('index page should have no html errors', function(done){
  	w3cjs.validate({
  		file: 'index.html',
  		callback: function (res) {
  				console.log(res);
  			if (res.messages.length > 0 ) {
  				throw {error: 'html errors have been found', results: res};
  			};
  			done();
  		}
  	})
  })
})

Clicky

About

A npm package for testing files or url's again the wc3 validator

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • JavaScript 100.0%