garycourt / JSV

A JavaScript implementation of an extendable, fully compliant JSON Schema validator.
618 stars 84 forks source link

node.js support #1

Closed Marak closed 14 years ago

garycourt commented 14 years ago

JSV works within a Node.js environment. You can use it by running within your code:

var JSV = require('./jsv').JSV;
akarelas commented 12 years ago

I found one needs to write: var JSV = require("JSV").JSV, if one has installed JSV by means of npm isntall JSV.