ask-json
v0.1.9
Published
Easy interactive prompts to create and validate data using JSON schema
Downloads
1,090
Maintainers
Readme
AskJSON
Easy interactive prompts to create and validate data using JSON schema.
Why this?
We use JSON files to hold important configuration like the metadata for our published pages. But filling out those files is often tedious and prone to error.
Using JSON schema helps us ensure config files contain the correct information. ask-json gives us a way to make filling out and validating those files easy. It hooks into our workflow and creates an interactive step to validate configuration before it's used.
What's it do?
ask-json lets you turn any JSON schema into an interactive CLI prompt. Just create a schema with some validation rules. ask-json will ask for any required information using friendly, data-type specific prompts from prompts.js.
It's best used to check an existing JSON file, correct invalid and missing information and write that data back to the file.
Install
$ npm install ask-json
or
$ yarn add ask-json
Prereqs: JSON schema
ask-json is driven by JSON schema validation. Check out the official docs to learn more about the spec.
Internally, ask-json uses ajv to validate data.
Use
CLI
Ask for data based on a JSON schema file.
$ askjson jsonSchema.json
Validate some data in a file. Answers to invalid or missing data will be rewritten to the file.
$ askjson jsonSchema.json -f data.json
Write validated data to a new file.
$ askjson jsonSchema.json -f data.json -o output.json
Module
import askJSON from 'ask-json';
const jsonSchema = {
type: 'object',
properties: {
title: {
type: 'string',
},
author: {
type: 'object',
properties: {
name: {
type: 'string',
},
email: {
type: 'string',
format: 'email',
},
},
required: ['name', 'email'],
},
},
required: ['title', 'author'],
};
const rawData = {
author: { name: 'Jon McClure' },
};
// Will ask user for title and author.email data!
const validData = await askJSON(jsonSchema, rawData);
Supported validation
As of the current version, ask-json handles simple schema validation rules and not all keywords are supported.
These are validation keywords currently handled by type:
number
- maximum, minimum, exclusiveMaximum, exclusiveMinimum, multipleOfstring
- maxLength, minLength, pattern, formatarray
- minItems, maxItems, items (object only!)object
- required, properties
Arrays in ask-json can only contain items of one type. For example, ask-json does not support this schema:
{
"type": "array",
"items": [
{ "type": "number" },
{ "type": "string" }
]
}
Because ask-json uses validation errors to trigger questions, any fields you want to prompt for when missing must be marked required. For example, in the following schema, ask-json will never ask for the email
property unless it contains invalid data.
{
"name": {
"type": "string"
},
"email": {
"type": "string",
"format": "email"
},
"required": [
"name"
]
}
Customizing questions
You can customize the questions used to ask users for missing or invalid data by adding a prompt
property to your schema with prompts.js question options.
There are some conditions: You won't have access to the name
property on your questions. Also, all functions will not have access to any previous answers -- e.g., (prev, values) => { ... }
.
Lastly, the message
property does not follow the usual signature in prompts.js. Instead, you can supply a string or a function which receives three params: the object dot-path of the variable being set, the validation error raised by ajv and the current value of the variable. If message
is a string, you can use a chalk tagged template literal to add a bit of color to your message.
Here's an example of some custom prompts:
const schema = {
type: 'object',
email: {
type: 'string',
format: 'email',
prompt: {
message: (variablePath, error, currentValue) => {
if(error.message) return `Your email "${currentValue}" is invalid: ${error.message}. What's your email?`;
return `What's your email?`;
}
}
}
color: {
type: 'string',
prompt: {
type: 'select',
message: 'What {red color} do you want?',
choices: [
{ title: 'Red', value: '#ff0000' },
{ title: 'Green', value: '#00ff00' },
{ title: 'Blue', value: '#0000ff' },
],
},
},
};
Asking to add additional items to an array
Outside fixing invalid and missing data, you can also prompt users to optionally add additional items to an array. Just pass a config object with askToAddItems
set true
:
const schema = {
type: 'object',
authors: {
type: 'array',
items: {
type: 'object',
properties: {
name: { type: 'string' },
email: { type: 'string', format: 'email' },
},
required: ['name', 'email'],
},
minItems: 1,
prompt: {
// Can also use a custom message in the prompt to add items!
addMessage: 'Would you like to add an additional {green author}?',
},
maxItems: 5, // Won't prompt if array already has max items.
},
required: ['authors']
};
const rawData = {
authors: [
{ name: 'Jon', email: '[email protected]' },
]
};
const config = { askToAddItems: true };
const validData = await askJSON(schema, rawData, config);
Testing
$ yarn build && yarn test
Some tests ask for manual input from the tester. You can skip these by running:
$ yarn build && yarn test-automatic-only