typetype-examples VS json-schema-to-ts

Compare typetype-examples vs json-schema-to-ts and see what are their differences.

typetype-examples

Examples of using typetype to create typescript types (by mistlog)

json-schema-to-ts

Infer TS types from JSON schemas 📝 (by ThomasAribart)
SurveyJS - Open-Source JSON Form Builder to Create Dynamic Forms Right in Your App
With SurveyJS form UI libraries, you can build and style forms in a fully-integrated drag & drop form builder, render them in your JS app, and store form submission data in any backend, inc. PHP, ASP.NET Core, and Node.js.
surveyjs.io
featured
InfluxDB - Power Real-Time Data Analytics at Scale
Get real-time insights from all types of time series data with InfluxDB. Ingest, query, and analyze billions of data points in real-time with unbounded cardinality.
www.influxdata.com
featured
typetype-examples json-schema-to-ts
3 5
30 1,345
- -
0.0 7.5
about 3 years ago 10 days 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.

typetype-examples

Posts with mentions or reviews of typetype-examples. We have used some of these posts to build our list of alternatives and similar projects. The last one was on 2021-02-26.
  • Create complex type using object spread
    2 projects | dev.to | 26 Feb 2021
    The url parser example:
  • The idea of type polyfill
    1 project | /r/typescript | 24 Feb 2021
    import { Object, List } from "ts-toolbelt" declare global { // add type guard type object$assign = a extends object ? b extends List.List ? Object.Assign : never : never } In this way, we can create even more complex types in intuitive way. You can find the complete example(url-parser) in: typetype: https://github.com/mistlog/typetype-examples/blob/main/examples/url-parser-2/url-parser-2.type generated ts type: https://github.com/mistlog/typetype-examples/blob/main/examples/url-parser-2/url-parser-2.ts
  • typetype: generate complex typescript type easily
    3 projects | /r/typescript | 14 Feb 2021
    Currently, the only benefit is that it's more readable than ts type. For example, the URL parser in https://github.com/mistlog/typetype-examples/blob/main/examples/url-parser/url-parser.type is clear and straightforward.

json-schema-to-ts

Posts with mentions or reviews of json-schema-to-ts. We have used some of these posts to build our list of alternatives and similar projects. The last one was on 2023-02-16.
  • Fastify: Support for Auto Type Inference (similar to TRPC)
    6 projects | /r/typescript | 16 Feb 2023
    JSON Schema To TS
  • Better Backend DX: JSON Schema + TypeScript + Swagger = ✨ Vol. 2
    1 project | dev.to | 20 May 2022
    // First create a general "post" schema // Shared Schema export const postSchema = { $id: 'post', type: 'object', properties: { id: { type: 'number' }, title: { type: 'string' }, published: { type: 'boolean' }, content: { type: 'string' }, tags: { type: 'array', items: { type: 'string' } }, deleted: { type: 'boolean' } }, required: ['title', 'published', 'content', 'tags', 'deleted'] } as const // We don't need to create a separate "bodySchema". // But directly infer type from postSchema export type Body = FromSchema // Reply Schema // Check https://www.fastify.io/docs/latest/Reference/Validation-and-Serialization/#adding-a-shared-schema const replySchema = { type: 'object', properties: { posts: { type: 'array', items: { $ref: 'post#' } } }, additionalProperties: false } as const // Check https://github.com/ThomasAribart/json-schema-to-ts#references export type Reply = FromSchema< typeof replySchema, { references: [typeof postSchema] } > // Also make ReplyNotFound reusable for future use export const postNotFoundSchema = { $id: 'postNotFound', // add $id here type: 'object', required: ['error'], properties: { error: { type: 'string' } }, additionalProperties: false } as const export type PostNotFound = FromSchema
  • Better Backend DX: JSON Schema + TypeScript + Swagger = ✨ Vol. 1
    3 projects | dev.to | 17 May 2022
    json-schema-to-ts comes to the rescue. 💪
  • How do you handle runtime validation / API documentation?
    5 projects | /r/typescript | 23 Dec 2021
    https://github.com/ThomasAribart/json-schema-to-ts - Infers TS Types from raw JSON Schema object literals you embed in your code.
  • 6 importantes bibliotecas para AWS Serverless TypeScript
    5 projects | dev.to | 21 Feb 2021
    Fonte: https://github.com/ThomasAribart/json-schema-to-ts

What are some alternatives?

When comparing typetype-examples and json-schema-to-ts you can also consider the following projects:

aws-lambda-power-tuning - AWS Lambda Power Tuning is an open-source tool that can help you visualize and fine-tune the memory/power configuration of Lambda functions. It runs in your own AWS account - powered by AWS Step Functions - and it supports three optimization strategies: cost, speed, and balanced.

middy - 🛵 The stylish Node.js middleware engine for AWS Lambda 🛵

generate-runtypes - A code generator for Runtypes types. Perfect to create tooling to generate code for Runtypes!

papr - MongoDB TypeScript-aware Models

quicktype - Generate types and converters from JSON, Schema, and GraphQL

json-schema-to-typescript - Compile JSON Schema to TypeScript type declarations

fastify-type-provider-typebox - A Type Provider for Typebox

dynamodb-toolbox - A simple set of tools for working with Amazon DynamoDB and the DocumentClient

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

JSONForms - Customizable JSON Schema-based forms with React, Angular and Vue support out of the box.

fastify-swagger - Swagger documentation generator for Fastify

zod-plugins - Plugins and utilities for Zod