UNPKG

@practica/create-node-app

Version:

Create Node.js app that is packed with best practices AND strive for simplicity

11 lines (7 loc) 249 B
import AJV from 'ajv'; // This file is used to provide a 'singleton' AJV instance for the entire app so // every client can cache the compiled schemas const ajv = new AJV(); ajv.addKeyword('kind'); ajv.addKeyword('modifier'); export default ajv;