ajv VS typescript-is

Compare ajv vs typescript-is and see what are their differences.

ajv

The fastest JSON schema Validator. Supports JSON Schema draft-04/06/07/2019-09/2020-12 and JSON Type Definition (RFC8927) (by ajv-validator)
Our great sponsors
  • SurveyJS - Open-Source JSON Form Builder to Create Dynamic Forms Right in Your App
  • WorkOS - The modern identity platform for B2B SaaS
  • InfluxDB - Power Real-Time Data Analytics at Scale
ajv typescript-is
60 9
13,383 951
1.1% -
6.3 4.2
about 24 hours ago 9 months ago
TypeScript TypeScript
MIT License MIT License
The number of mentions indicates the total number of mentions that we've tracked plus the number of user suggested alternatives.
Stars - the number of stars that a project has on GitHub. Growth - month over month growth in stars.
Activity is a relative number indicating how actively a project is being developed. Recent commits have higher weight than older ones.
For example, an activity of 9.0 indicates that a project is amongst the top 10% of the most actively developed projects that we are tracking.

ajv

Posts with mentions or reviews of ajv. We have used some of these posts to build our list of alternatives and similar projects. The last one was on 2024-04-07.
  • Popular Libraries For Building Type-safe Web Application APIs
    6 projects | dev.to | 7 Apr 2024
    Ajv’s documentation is available here.
  • 6 Reasons why JSON Schema is worth your time
    5 projects | dev.to | 3 Oct 2023
    In the JavaScript ecosystem you can use the excellent AJV package to validate any JavaScript object against a JSON schema. This is especially useful to ensure that API contracts are maintained when communicating with other services.
  • Migrate Your Express Application to Fastify
    12 projects | dev.to | 5 Jul 2023
    Since Fastify supports schema validation with Ajv, the validate module is no longer required on the /shorten route, and we can specify the JSON schema directly on the route. The controllers for both routes will largely remain the same, except that the res parameter is renamed to reply as before:
  • Has anybody used Typia library?
    3 projects | /r/typescript | 27 Jun 2023
    There's a ton of schema validators out there and most devs have their personal favorite. Mine was zod and is now typebox + ajv.
  • Accept only specific keys in JSON or form-data format in express?
    1 project | /r/node | 16 Jun 2023
    Good validator library: https://www.npmjs.com/package/ajv
  • Advanced Fastify: Hooks, Middleware, and Decorators
    4 projects | dev.to | 31 May 2023
    Fastify uses JSON schema to define the validation rules for each route's input payload, which includes the request body, query string, parameters, and headers. The JSON schema is a standard format for defining the structure and constraints of JSON data, and Fastify uses Ajv, one of the fastest and most efficient JSON schema validators available.
  • Getting Started with Fastify for Node.js
    4 projects | dev.to | 5 May 2023
    In Fastify, JSON schema validation is a built-in feature that allows you to validate the payload of incoming requests before the handler function is executed. This ensures that incoming data is in the expected format and meets the required criteria for your business logic. Fastify's JSON schema validation is powered by the Ajv library, a fast and efficient JSON schema validator.
  • How can we map data from JSON to typescript object efficiently?
    4 projects | /r/reactjs | 30 Apr 2023
    I think you're looking for a json schema validator like Ajv or Zod.
  • 5 useful JSON tools to improve your productivity
    4 projects | dev.to | 11 Apr 2023
    We can use JSON Schema to validate that our data adheres to a specific structure. Ajv is one popular validator tool for JavaScript applications that allows us to create a schema and then validate JSON against that schema. Here's an example of using Ajv to validate one of the above JSON examples against a schema:
  • Ask HN: JSON API object type definitions and validation in 2023?
    2 projects | news.ycombinator.com | 23 Mar 2023
    Hey HN,

    We're designing a new system and have been kicking the can about JSON object definitions and validation. Soon we need to settle on a system to validate API request bodies and provide helpful error messages.

    In the past, I've used JSON Schema ( https://json-schema.org/ ) to define definitions and ajv ( https://ajv.js.org/ ) to validate, but it's a bit verbose and ajv validation errors are more cryptic than I'd like to deal with.

    TypeSchema looks interesting. It seems solid (and perhaps stable?), but development hasn't been active for 2 years. It also looks like we'd still need to generate JSON Schema and choose a validation library

    Anyway, I'm very curious how others are approaching this problem. How do you organize and generate validations for your type definitions? What libraries do you use to validate and provide human readable error messages?

    Thank you!

typescript-is

Posts with mentions or reviews of typescript-is. We have used some of these posts to build our list of alternatives and similar projects. The last one was on 2023-07-23.
  • Good bye "typescript-is" (ancestor of "typia", 20,000x faster validator)
    2 projects | /r/node | 23 Jul 2023
    3 projects | dev.to | 21 Jul 2023
  • Typing for JSON Payloads
    7 projects | /r/typescript | 17 Jan 2022
    I'll throw https://github.com/woutervh-/typescript-is in the mix as well.
  • Handling json input in an express app
    4 projects | /r/typescript | 12 Oct 2021
    I'm a fan of typescript-is. Provides both compile time and run time validations
  • What can I *use* Rust for?
    2 projects | /r/rust | 3 Oct 2021
    For what it's worth, thanks to TypeScript transformers (a feature baked into the compiler), one can create a transformer library that verifies an object is valid for any TypeScript type and conveys that information to the typechecker. And indeed, it's already been made. It allows to parse unknown into a given T. This is nice, because one can generate a JSON schema out of a TS type, for other languages/codebases to integrate safely.
  • Do you use code generators? If so, which ones?
    1 project | /r/reactjs | 8 Sep 2021
    But to make it worth the comment, I’ll point people to typescript-is which uses transformations at compile-time to generate run-time type checking code.
  • TypeScript runtime type-checking - designed for simple use, through to enforcing API payload schema
    5 projects | /r/typescript | 7 Sep 2021
    Then there's also typescript-is, which is pretty neat because it converts actual compile-time type definitions to runtime type checks, so it doesn't require changing the type definitions.
  • JSON Schema === Runtime Type System for TypeScript
    8 projects | /r/typescript | 6 Jul 2021
    typescript-is. This uses a compile-time transformer to generate code for type-checking. You'll need to use ttypescript instead of typescript to compile your code (I recommend setting this up with ts-patch). It won't work if your build pipeline is actually using something like esbuild or Babel to transpile TS->JS.
  • How an Anti-TypeScript “JavaScript developer” like me became a TypeScript fan
    11 projects | news.ycombinator.com | 2 Mar 2021
    If you're not using a bunch of generics, check out typescript-is [1]. It takes little work to get it setup, but it generates run time type checks for you. I understand why typescript decided to not add this functionality to the core of the language, but it's starting to feel like the largest missing piece of typescript is a built-in way to generate run-time type-checks for user-defined types from just the type definition.

    The happy medium we've found with that module is using the runtime type-check on anything "unsafe" to bless the result using typescript-is's equals functionality, but still allowing programmers to use casting with a comment justifying its necessity. For us our list of unsafe is results pulled from the db, anything parsed from JSON, and incoming request bodies (which can be a special case of parsing from JSON, but not always).

    [1]: https://github.com/woutervh-/typescript-is

What are some alternatives?

When comparing ajv and typescript-is you can also consider the following projects:

joi - The most powerful data validation library for JS [Moved to: https://github.com/hapijs/joi]

runtypes - Runtime validation for static types

Yup - Dead simple Object schema validation

class-transformer - Decorator-based transformation, serialization, and deserialization between objects and classes.

zod - TypeScript-first schema validation with static type inference

class-validator - Decorator-based property validation for classes.

tv4 - Tiny Validator for JSON Schema v4

typebox - Json Schema Type Builder with Static Type Resolution for TypeScript

ts-node - TypeScript execution and REPL for node.js