3.0.1 • Published 4 years ago

validate-noddity-post v3.0.1

Weekly downloads
3
License
WTFPL
Repository
github
Last release
4 years ago

Validate noddity posts so that you can be guaranteed that their metadata is valid/parseable, and the contents can be rendered by the templating engine.

API

Greenkeeper badge

const Validator = require('validate-noddity-post')
const validate = Validator({
	butler,
	linkifier,
	data
})

require returns a constructor function:

constructor({ butler, linkifier, data, template })

The constructor function returns a validator function:

validator function(post)

Returns a promise that resolves with an object. If there is anything wrong with the post it will have an error property.

If the promise is rejected, then something is wrong with the universe, which is a distinct possibility when you're interacting with physical disks and internets and whatnot.

Example

validate('my-newest-post.md').then(({ error }) => {
	if (error) {
		console.log('your post sucks!', error)
	}
})

License

WTFPL

3.0.1

4 years ago

3.0.0

8 years ago

2.0.2

8 years ago

2.0.1

8 years ago

2.0.0

8 years ago

1.0.1

8 years ago

1.0.0

8 years ago