npm install jsonfeed-validator

> JSON Feed validator
```
$ npm install jsonfeed-validator --save
`js
const validate = require('jsonfeed-validator')
const feed = {
version: 'https://jsonfeed.org/version/1',
title: 'My Example Feed',
home_page_url: 'https://example.org/',
feed_url: 'https://example.org/feed.json',
items: [
{
content_html: '
Hello, world!
',const results = validate(feed)
/*
[
'should have required property \'id\' at path \'.items[0]\''
]
*/
`
#### validate(feed)
##### feed
Type: object`
JSON Feed to be validated.