<img align="right" alt="Ajv logo" width="160" src="https://ajv.js.org/images/ajv_logo.png">
# Ajv: Another JSON Schema Validator
The fastest JSON Schema validator for Node.js and browser. Supports draft-04/06/07.
[![Build Status](https://travis-ci.org/ajv-validator/ajv.svg?branch=master)](https://travis-ci.org/ajv-validator/ajv)
[![npm](https://img.shields.io/npm/v/ajv.svg)](https://www.npmjs.com/package/ajv)
[![npm (beta)](https://img.shields.io/npm/v/ajv/beta)](https://www.npmjs.com/package/ajv/v/7.0.0-beta.0)
[![npm downloads](https://img.shields.io/npm/dm/ajv.svg)](https://www.npmjs.com/package/ajv)
[![Coverage Status](https://coveralls.io/repos/github/ajv-validator/ajv/badge.svg?branch=master)](https://coveralls.io/github/ajv-validator/ajv?branch=master)
[![Gitter](https://img.shields.io/gitter/room/ajv-validator/ajv.svg)](https://gitter.im/ajv-validator/ajv)
[![GitHub Sponsors](https://img.shields.io/badge/$-sponsors-brightgreen)](https://github.com/sponsors/epoberezkin)
## Ajv v7 beta is released
[Ajv version 7.0.0-beta.0](https://github.com/ajv-validator/ajv/tree/v7-beta) is released with these changes:
- to reduce the mistakes in JSON schemas and unexpected validation results, [strict mode](./docs/strict-mode.md) is added - it prohibits ignored or ambiguous JSON Schema elements.
- to make code injection from untrusted schemas impossible, [code generation](./docs/codegen.md) is fully re-written to be safe.
- to simplify Ajv extensions, the new keyword API that is used by pre-defined keywords is available to user-defined keywords - it is much easier to define any keywords now, especially with subschemas.
- schemas are compiled to ES6 code (ES5 code generation is supported with an option).
- to improve reliability and maintainability the code is migrated to TypeScript.
**Please note**:
- the support for JSON-Schema draft-04 is removed - if you have schemas using "id" attributes you have to replace them with "\$id" (or continue using version 6 that will be supported until 02/28/2021).
- all formats are separated to ajv-formats package - they have to be explicitely added if you use them.
See [release notes](https://github.com/ajv-validator/ajv/releases/tag/v7.0.0-beta.0) for the details.
To install the new version:
```bash
npm install ajv@beta
```
See [Getting started with v7](https://github.com/ajv-validator/ajv/tree/v7-beta#usage) for code example.
## Mozilla MOSS grant and OpenJS Foundation
[<img src="https://www.poberezkin.com/images/mozilla.png" width="240" height="68">](https://www.mozilla.org/en-US/moss/) [<img src="https://www.poberezkin.com/images/openjs.png" width="220" height="68">](https://openjsf.org/blog/2020/08/14/ajv-joins-openjs-foundation-as-an-incubation-project/)
Ajv has been awarded a grant from Mozilla’s [Open Source Support (MOSS) program](https://www.mozilla.org/en-US/moss/) in the “Foundational Technology” track! It will sponsor the development of Ajv support of [JSON Schema version 2019-09](https://tools.ietf.org/html/draft-handrews-json-schema-02) and of [JSON Type Definition](https://tools.ietf.org/html/draft-ucarion-json-type-definition-04).
Ajv also joined [OpenJS Foundation](https://openjsf.org/) – having this support will help ensure the longevity and stability of Ajv for all its users.
This [blog post](https://www.poberezkin.com/posts/2020-08-14-ajv-json-validator-mozilla-open-source-grant-openjs-foundation.html) has more details.
I am looking for the long term maintainers of Ajv – working with [ReadySet](https://www.thereadyset.co/), also sponsored by Mozilla, to establish clear guidelines for the role of a "maintainer" and the contribution standards, and to encourage a wider, more inclusive, contribution from the community.
## Please [sponsor Ajv development](https://github.com/sponsors/epoberezkin)
Since I asked to support Ajv development 40 people and 6 organizations contributed via GitHub and OpenCollective - this support helped receiving the MOSS grant!
Your continuing support is very important - the funds will be used to develop and maintain Ajv once the next major version is released.
Please sponsor Ajv via:
- [GitHub sponsors page](https://github.com/sponsors/epoberezkin) (GitHub will match it)
- [Ajv Open Collective️](https://opencollective.com/ajv)
Thank you.
#### Open Collective sponsors
<a href="https://opencollective.com/ajv"><img src="https://opencollective.com/ajv/individuals.svg?width=890"></a>
<a href="https://opencollective.com/ajv/organization/0/website"><img src="https://opencollective.com/ajv/organization/0/avatar.svg"></a>
<a href="https://opencollective.com/ajv/organization/1/website"><img src="https://opencollective.com/ajv/organization/1/avatar.svg"></a>
<a href="https://opencollective.com/ajv/organization/2/website"><img src="https://opencollective.com/ajv/organization/2/avatar.svg"></a>
<a href="https://opencollective.com/ajv/organization/3/website"><img src="https://opencollective.com/ajv/organization/3/avatar.svg"></a>
<a href="https://opencollective.com/ajv/organization/4/website"><img src="https://opencollective.com/ajv/organization/4/avatar.svg"></a>
<a href="https://opencollective.com/ajv/organization/5/website"><img src="https://opencollective.com/ajv/organization/5/avatar.svg"></a>
<a href="https://opencollective.com/ajv/organization/6/website"><img src="https://opencollective.com/ajv/organization/6/avatar.svg"></a>
<a href="https://opencollective.com/ajv/organization/7/website"><img src="https://opencollective.com/ajv/organization/7/avatar.svg"></a>
<a href="https://opencollective.com/ajv/organization/8/website"><img src="https://opencollective.com/ajv/organization/8/avatar.svg"></a>
<a href="https://opencollective.com/ajv/organization/9/website"><img src="https://opencollective.com/ajv/organization/9/avatar.svg"></a>
## Using version 6
[JSON Schema draft-07](http://json-schema.org/latest/json-schema-validation.html) is published.
[Ajv version 6.0.0](https://github.com/ajv-validator/ajv/releases/tag/v6.0.0) that supports draft-07 is released. It may require either migrating your schemas or updating your code (to continue using draft-04 and v5 schemas, draft-06 schemas will be supported without changes).
__Please note__: To use Ajv with draft-06 schemas you need to explicitly add the meta-schema to the validator instance:
```javascript
ajv.addMetaSchema(require('ajv/lib/refs/json-schema-draft-06.json'));
```
To use Ajv with draft-04 schemas in addition to explicitly adding meta-schema you also need to use option schemaId:
```javascript
var ajv = new Ajv({schemaId: 'id'});
// If you want to use both draft-04 and draft-06/07 schemas:
// var ajv = new Ajv({schemaId: 'auto'});
ajv.addMetaSchema(require('ajv/lib/refs/json-schema-draft-04.json'));
```
## Contents
- [Performance](#performance)
- [Features](#features)
- [Getting started](#getting-started)
- [Frequently Asked Questions](https://github.com/ajv-validator/ajv/blob/master/FAQ.md)
- [Using in browser](#using-in-browser)
- [Ajv and Content Security Policies (CSP)](#ajv-and-content-security-policies-csp)
- [Command line interface](#command-line-interface)
- Validation
- [Keywords](#validation-keywords)
- [Annotation keywords](#annotation-keywords)
- [Formats](#formats)
- [Combining schemas with $ref](#ref)
- [$data reference](#data-reference)
- NEW: [$merge and $patch keywords](#merge-and-patch-keywords)
- [Defining custom keywords](#defining-custom-keywords)
- [Asynchronous schema compilation](#asynchronous-schema-compilation)
- [Asynchronous validation](#asynchronous-validation)
- [Security considerations](#security-considerations)
- [Security contact](#security-contact)
- [Untrusted schemas](#untrusted-schemas)
- [Circular references in objects](#circular-references-in-javascript-objects)
- [Trusted schemas](#security-risks-of-trusted-schemas)
- [ReDoS attack](#redos-attack)
- Modifying data during validation
- [Filtering
没有合适的资源?快使用搜索试试~ 我知道了~
Vue-小兔鲜购物网站(静态页面)
共2002个文件
md:943个
js:847个
json:200个
需积分: 0 4 下载量 123 浏览量
更新于2025-01-06
收藏 40.53MB ZIP 举报
Vue-小兔鲜购物网站(静态页面)
收起资源包目录
Vue-小兔鲜购物网站(静态页面) (2002个子文件)
.DS_Store 8KB
.DS_Store 6KB
test-microtask.html 308B
test-polyfill.html 301B
test.html 295B
compiler-sfc.js 646KB
compiler-sfc.js 646KB
vue.js 425KB
vue.esm.js 409KB
vue.common.dev.js 390KB
vue.esm.browser.js 389KB
vue.runtime.js 309KB
vue.runtime.esm.js 298KB
vue.runtime.common.dev.js 284KB
joi-browser.min.js 146KB
js-yaml.js 108KB
vue.min.js 105KB
vue.esm.browser.min.js 102KB
vue.common.prod.js 102KB
validators.js 98KB
index.js 91KB
volume.js 90KB
index.js 78KB
vue.runtime.min.js 75KB
vue.runtime.common.prod.js 73KB
named-entity-data.js 72KB
yargs-parser.js 45KB
index.js 45KB
index.js 45KB
index.es.js 44KB
index.js 44KB
loader.js 43KB
js-yaml.min.js 42KB
configuration.js 40KB
emit.js 37KB
emit.js 36KB
_stream_readable.js 35KB
regenerate.js 34KB
keys.js 32KB
base.js 29KB
grid-utils.js 29KB
response.js 28KB
string.js 28KB
index.js 27KB
parse.js 27KB
dumper.js 27KB
array.js 26KB
estraverse.js 26KB
core.js 25KB
prefixes.js 23KB
big.js 23KB
index.js 23KB
_stream_writable.js 21KB
break-up.js 21KB
processor.js 21KB
bigfraction.js 21KB
validator.js 20KB
resolver_sync.js 20KB
DirectoryWatcher.js 20KB
index.js 20KB
resolver.js 20KB
fraction.js 19KB
node.js 17KB
index.js 17KB
conversions.js 16KB
index.js 16KB
index.js 15KB
parser.js 14KB
application.js 14KB
hybi.js 14KB
parse.js 13KB
pluginWebpack5.js 13KB
lazy-result.js 13KB
prefixes.js 13KB
index.js 13KB
restructure.js 12KB
errors.js 12KB
request.js 12KB
open-element-stack.js 12KB
visit.js 12KB
validator.js 12KB
manifest.js 12KB
index.js 11KB
async.js 11KB
template.js 11KB
can-override.js 11KB
visit.js 11KB
index.js 11KB
gradient.js 10KB
container.js 10KB
watchpack.js 10KB
pluginWebpack4.js 10KB
index.js 10KB
number.js 10KB
alternatives.js 10KB
ref.js 10KB
index.js 10KB
mock.js 10KB
index.js 10KB
picomatch.js 10KB
共 2002 条
- 1
- 2
- 3
- 4
- 5
- 6
- 21
资源推荐
资源预览
资源评论
126 浏览量
136 浏览量
154 浏览量
2023-11-04 上传
117 浏览量
145 浏览量
5星 · 资源好评率100%
201 浏览量
147 浏览量
5星 · 资源好评率100%
133 浏览量
5星 · 资源好评率100%
176 浏览量
5星 · 资源好评率100%
2022-01-18 上传
2017-12-20 上传
167 浏览量
179 浏览量
5星 · 资源好评率100%
2020-04-23 上传
5星 · 资源好评率100%
168 浏览量
5星 · 资源好评率100%
5星 · 资源好评率100%
121 浏览量
192 浏览量
2023-04-03 上传
5星 · 资源好评率100%
资源评论
努力奔跑的鱼
- 粉丝: 1414
- 资源: 4
上传资源 快速赚钱
- 我的内容管理 展开
- 我的资源 快来上传第一个资源
- 我的收益 登录查看自己的收益
- 我的积分 登录查看自己的积分
- 我的C币 登录后查看C币余额
- 我的收藏
- 我的下载
- 下载帮助
最新资源
- (2025)行政单位会计制度知识竞赛题(含答案).docx
- (2025)汉字听写大会竞赛题库(含答案).docx
- (2025)行政诉讼法知识竞赛必刷题库及答案.docx
- (2025)红十字初级急救员证考试题及答案.docx
- (2025)会计电算化考试试题(含答案).docx
- (2025)会计基础考试题库及答案(带答案解析).docx
- (2025)机电标准化考试试题(含答案).docx
- (2025)基本公共卫生服务项目考试题库及答案.docx
- (2025)机关事业单位《工人技术职业道德》等级考核题库及答案.docx
- (2025)计算机基础理论信息安全基本知识试题及答案.docx
- (2025)计算机二级考试全真试题库及答案(通用版).docx
- (2025)计算机网络技术考试题及答案.docx
- (2025)见证取样员考试试题(带答案).docx
- (2025)监理工程师《案例分析》考试题库及答案.docx
- (2025)见证取样员考试题库及答案.docx
- 英伟达半导体科技(上海)有限公司创投信息
安全验证
文档复制为VIP权益,开通VIP直接复制
信息提交成功