Skip to content

json-schema-faker/json-schema-server

Repository files navigation

JSON-Schema Server

Build status NPM version Coverage Status

Dependency Status devDependency Status

Install json-schema-server globally:

$ npm install -g json-schema-server

Then starts a server for your JSON-Schema files:

$ json-schema-server [dir] -p 5000

Now you can make requests through the created server:

$ http http://localhost:5000/path/to/schema

The better if you're using httpie. 🍻

Options

  • --fakeroot → BaseURI for references that will fake (default: http://json-schema.org).
  • --formats → CommonJS module-id or path for custom formats.
  • --silent → Turns off the reporting through the STDOUT.
  • --port → Custom port for the server (default: 3000).

If no dir is provided process.cwd() will be used instead.

Run json-schema-server -h to display all usage info

Try fake-schema-cli if you want single-shot calls.