ajv VS sweet.js

Compare ajv vs sweet.js 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 sweet.js
60 12
13,383 4,580
1.3% 0.0%
6.3 0.0
1 day ago over 6 years ago
TypeScript JavaScript
MIT License BSD 2-clause "Simplified" 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!

sweet.js

Posts with mentions or reviews of sweet.js. We have used some of these posts to build our list of alternatives and similar projects. The last one was on 2023-06-30.
  • JavaScript Macros in Bun
    2 projects | news.ycombinator.com | 30 Jun 2023
    I was ready to be excited from the title, but was utterly disappointed :(

    IMO these aren’t macros in the Lisp-sense of the word (or Rust, or even C); yeah they run code at compile time, but that’s where the common ends.

    Macros should be able to apply syntactic transformation on the code. Lisp is famous for allowing that by representing code as lists. Rust has a compiler-level API to give tokens and run arbitrary code, then spit new tokens out. C macros operate on the tokens level, so with enough magic you can transform code to the shape you want.

    This… isn’t any of that.

    A pretty good example (and something I’m still sad that it didn’t take off) of macros in JS is Sweet.js[0]. Babel macros[1] are a bit higher level, where macros require the input to already be a valid AST, but that’s also cool.

    This… I’d say it’s more of a build-time code execution feature, not a macro feature.

    [0]: https://www.sweetjs.org/

    1 project | /r/node | 19 Jun 2023
    Macros I'd expect to be able to be able to expand at compile time to more code to reduce boilerplate, something like SweetJS.
  • Angular Signals: What? Why? and How? (Classy explanation of what we know as writables.)
    1 project | /r/sveltejs | 26 Jun 2023
    But yes, I'll tone down my appreciation for writables in this sub, I'll confine my tangents to svelte. A kind of a shame I'd love to talk about using https://www.sweetjs.org/ to make the $ autosubscription work outside of svelte, and the like. But holy off-topic Batman!
  • Sweet.js - Hygienic Macros for JavaScript (Macros allow you to sweeten the syntax of JavaScript and craft the language you always wanted)
    1 project | /r/javascript | 9 Feb 2023
  • Interesting... Macros for JavaScript?
    1 project | news.ycombinator.com | 9 Feb 2023
  • Pipe Operator (|>) For JavaScript
    9 projects | news.ycombinator.com | 20 Jan 2023
    Mozilla created SweetJS over a decade ago[0]. It added hygenic macros to JS and I'm sure everyone on the TC39 committee is familiar with it.

    There's a lot to like about it, but macros in such a complicated language as JS are hard to get right. They'd also potentially lead to huge fracturing in the JS ecosystem with different factions writing their own, incompatible macro-based languages.

    Look at JSX for an example. It's actually a subset of a real standard (E4X -- actually implemented in Firefox for a long time), but just one relatively small syntax addition has added complexity elsewhere.

    For example, `const foo = (x:T) => x` is valid Typescript for a generic arrow function, but is an error if your file is using JSX.

    I like the idea of macros, but I suspect they made the right call here.

    [0] https://www.sweetjs.org/

  • Ultra-minimal JSON schemas with TypeScript inference
    11 projects | news.ycombinator.com | 27 Jul 2022
    Sweetjs is unfortunately dead [0] for like 5 years now.

    It also doesn't have any typescript awareness which is required to build this kind of functionality - you want to have static type introspection available in macros so you can generate code based on provided types.

    [0] https://github.com/sweet-js/sweet-core/graphs/contributors

  • Equivalent to macros, ifdef and enums from other programming language?
    2 projects | /r/learnjavascript | 28 May 2022
    None of these are supported natively by JavaScript. Macros and ifdefs you could get with your own build step using things like sweetjs or ifdef-loader for webpack. Enums are in a similar boat with TypeScript supporting enums out of the box. But there's also a (very early) proposal to add enums natively to JavaScript as well.
  • What are some reasons to use metaprogramming?
    3 projects | /r/functionalprogramming | 16 May 2022
    TS doesn’t have monadic do notation, which is something that I want very badly. This would be easy to add to JavaScript with Sweet.js macros, but there’s no equivalent tool for TypeScript. I expect that extending this to TypeScript would be very difficult.
  • SICP: JavaScript Edition available for pre-order
    2 projects | news.ycombinator.com | 21 Jan 2022
    > If forEach is not to be used

    That source is simply incorrect. forEach is perfectly fine to use as long as you realize what is happening. It iterates an array where each thing is a function that returns a promise. Of course the results aren't what they expect.

    ES5 array additions suffer from being a little too early (though later stuff wouldn't exist otherwise, so...). They are designed to deal with holey arrays (arrays with indexes missing). This is extremely uncommon today, but was decently common once upon a time. They were also created before the iterator protocol.

    The real fix is to design iterator versions that can handle things like async generator functions.

    > it should be deprecated and removed from the language in a timely manner.

    NOTHING can be removed from the language once added. Doing that would break all the older websites that depend on it (technically, a few minor breaks happened after they tested millions of sites and couldn't find anything that was adversely affected). At best, they can block older features from newer features. For example, using class syntax or a bunch of other ES6 language structures automatically makes your code shift into "use strict" mode.

    I hope they introduce a "use strict 2" variant that strips away more of the undesirable features than the current "use strict" does.

    > Since Javascript is based on C syntax, it should have the preprocessor that the birthplace of C saw it fit for that language not to be without.

    That pre-processor was a source of untold nightmares. Direct injection leads to bugs. If someone is going that route, full-blown macros are the only answer. There is a full-blown macro system Mozilla created a few years ago, but it's not very popular.

    https://www.sweetjs.org/

    There also exist some C-style pre-processors for babel too, but they should be avoided because lisp's gensym is a critical feature that they and C both lack.

What are some alternatives?

When comparing ajv and sweet.js you can also consider the following projects:

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

Zepcode - ⚗️ Zeplin extension that generates Swift snippets from colors, fonts, and layers

Yup - Dead simple Object schema validation

ts-morph - TypeScript Compiler API wrapper for static analysis and programmatic code changes.

zod - TypeScript-first schema validation with static type inference

typescript-transformer-handbook - 📘 A comprehensive handbook on how to create transformers for TypeScript with code examples

tv4 - Tiny Validator for JSON Schema v4

medium-editor - Medium.com WYSIWYG editor clone. Uses contenteditable API to implement a rich text solution.

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

ace - Ace (Ajax.org Cloud9 Editor)

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

CodeMirror - In-browser code editor (version 5, legacy)