proposal-decorators VS openapi-typescript

Compare proposal-decorators vs openapi-typescript and see what are their differences.

Our great sponsors
  • SurveyJS - Open-Source JSON Form Builder to Create Dynamic Forms Right in Your App
  • InfluxDB - Power Real-Time Data Analytics at Scale
  • WorkOS - The modern identity platform for B2B SaaS
proposal-decorators openapi-typescript
64 16
2,646 4,556
1.2% -
4.2 9.3
about 2 months ago 8 days ago
TypeScript
- 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.

proposal-decorators

Posts with mentions or reviews of proposal-decorators. We have used some of these posts to build our list of alternatives and similar projects. The last one was on 2024-01-21.
  • Making Web Component properties behave closer to the platform
    9 projects | dev.to | 21 Jan 2024
    Because many rules are common to many attributes (the coerceType operation is defined by WebIDL, or using similar rules, and the HTML specification defines a handful of microsyntaxes for the parseValue and stringifyValue operations), those could be packaged up in a helper library. And with decorators coming to ECMAScript (and already available in TypeScript), those could be greatly simplified:
  • The case for using decorators in your codebase
    1 project | dev.to | 10 Jan 2024
    Decorators are currently not a part of the standard JavaScript language. They are still being discussed in tc39 and have reached proposal stage 3. This means the spec has more or less stabilized and we can use them but they would be transplied before being run in the browser. This would be done via babel or tsc for most users
  • JavaScript Naming Conventions are Important
    5 projects | dev.to | 14 Nov 2023
    JavaScript was created a long time ago, and at the time of its inception, the authors decided not to use affirmative prefixes for boolean names. Now, they do their best by continuing to follow their convention, even if it goes against the community's opinion. Even if the authors wanted to introduce new naming conventions in the specification, they could not do it, at least not coherently. Old code cannot be renamed because JavaScript must remain backward-compatible. And starting to write new code using new approaches is not a great idea either, as there would be two ways to do the same thing, which is also undesirable.
  • ECMAScript Decorators. The Ones That are Real
    6 projects | dev.to | 24 Oct 2023
    2016-07 – Stage 2. After the decorators proposal reached stage 2, its API began to undergo significant changes. Furthermore, at one point the proposal was referred to as "ESnext class features for JavaScript." During its development, there were numerous ideas about how decorators could be structured. To get a comprehensive view of the entire history of changes, I recommend reviewing the commits in the proposal's repository. Here is an example of what the decorators API used to look like:
  • Strawberry - Zero-Dependency, Build-Free JavaScript Framework
    2 projects | /r/javascript | 2 Jun 2023
    The example you've given isn't valid JavaScript, JS doesn't have decorators. (Although there is a stage 3 tc39 for it, afaik no browser has implemented it)
  • Updates from the 96th TC39 meeting
    5 projects | /r/javascript | 19 May 2023
    There was a decorators issue brought up in the meeting (issue 508) and decorators metadata, as noted in the article, is now at stage 3. So there's still active work being done on decorators. If I had to guess, I'd say they'd be a likely candidate for ES2024.
  • The Lightweight Alternative to GraphQL, Resolvers Instead of Endpoints
    2 projects | dev.to | 2 May 2023
    As per the proposal, decorators can be used with Classes and their elements such as fields, methods, and accessors. To leverage this feature, we need to ensure that our resolvers provider is an instance of a Class. Therefore, we will modify the code in src/api/users/users-resolvers.js to the following:
  • Using modern decorators in TypeScript
    4 projects | dev.to | 2 May 2023
    The modern version of decorators, which will be officially rolled out in TypeScript 5.0, no longer requires a compiler flag and follows the official ECMAScript Stage-3 proposal. Alongside a stable implementation that follows ECMAScript standards, decorators now work seamlessly with the TypeScript type system, enabling more enhanced functionality than the original version.
  • What should I do after react js
    2 projects | /r/developersIndia | 28 Apr 2023
    100% this. Going in depth of libraries will make you so much better developer than learning newest and coolest frameworks in JS ecosystem. Learn to create your own React, Promises, or anything you like in JS. It will give you immense perspective about these libraries. Once you start understanding them you will feel like they are not that complex and you can do it too. Go read TC39 proposals and issues people point out in them. You will see how JS is borrowing features from other languages.
  • Announcing TypeScript 5.0
    1 project | /r/javascript | 16 Mar 2023
    The actual proposal gives the "@reactive" decorator as the first example, which just so happens is the only decorator that I use in my library with TypeScript's legacy decorator option. Was so happy to see they recognize this use case! https://github.com/tc39/proposal-decorators

openapi-typescript

Posts with mentions or reviews of openapi-typescript. We have used some of these posts to build our list of alternatives and similar projects. The last one was on 2024-01-06.
  • Writing type safe API clients in TypeScript
    3 projects | dev.to | 6 Jan 2024
    OpenAPI TypeScript
  • Django 5.0 Is Released
    11 projects | news.ycombinator.com | 4 Dec 2023
    I'll preface all of this with a couple esoteric design goals that I had in mind:

    1. I actually _want_ an SPA. You might not need an SPA, if you don't need one then Vue/React/etc are overkill, etc.

    2. I want to power as much of the SPA as I can using the same REST API as my core product, both for dogfooding reasons and for consolidation. Many people might argue that this is a bad idea.

    ---

    With that in mind, some specific packages that I highly recommend:

    1. Django-vite (https://github.com/MrBin99/django-vite). This makes it very easy to serve an SPA from the actual django response/request model

    2. Some sort of way to get type information (if you're using TypeScript) into the frontend. I use a frankensteined system of the OpenAPI spec that django-ninja generates + openapi-typescript (https://github.com/drwpow/openapi-typescript). This means when I add, say, a new field to a response in Django, I immediately get typechecking for it in Vue — which has been _tremendously_ useful.

    3. Django-typescript-routes (a package I extracted and open-sourced!: https://github.com/buttondown-email/django-typescript-routes) which gives your front-end routing information based on the Django router.

  • OpenAPI-TypeScript – OpenAPI schemas in TypeScript
    1 project | news.ycombinator.com | 24 Nov 2023
  • Tell HN: Postman just wiped all my stuff
    15 projects | news.ycombinator.com | 6 Oct 2023
    Glad to see alternatives but disappointed that Bruno does not support OpenAPI specification.

    At my company, we hand-edit OpenAPI specs in YAML and it gets consumed by many tools that generate types[0], static analysis and dynamic checks[1]. The OpenAPI spec itself is linted[2]. And of course, Postman consumes OpenAPI.

    Tools that are built on open standards will naturally see greater adoption over those that use proprietary formats.

    [0]: https://openapi-ts.pages.dev

  • tRPC – Move Fast and Break Nothing. End-to-end typesafe APIs made easy
    30 projects | news.ycombinator.com | 12 Aug 2023
    Another great library to generate TS types from OpenAPI is https://github.com/drwpow/openapi-typescript . It provides the types as single objects you access via indexing, which is pretty nice. There's a partner library to generate a typed fetch client.
  • How can I generate typescript types?
    2 projects | /r/node | 4 Jun 2023
    If you're willing to document your API with an OpenAPI schema, then it should be possible to generate TypeScript types based on the OpenAPI schema with something like openapi-typescript. Also, Typebox can generate JSON schemas, maybe it can be used to generate something that the front-end can also use?
  • Should I add Redux?
    1 project | /r/reactjs | 31 May 2023
    REST
  • Building a Secure Database-Centric OpenAPI in 15 Minutes
    3 projects | dev.to | 19 Mar 2023
    In this sample, we'll achive it using openapi-typescript and openapi-typescript-fetch.
  • GRPC Gateway API Client?
    6 projects | /r/golang | 4 Feb 2023
  • Need help to generate openapi services for vue
    3 projects | /r/vuejs | 23 Jan 2023
    I've used this, and it works very well. https://github.com/drwpow/openapi-typescript

What are some alternatives?

When comparing proposal-decorators and openapi-typescript you can also consider the following projects:

proposals - Tracking ECMAScript Proposals

routing-controllers - Create structured, declarative and beautifully organized class-based controllers with heavy decorators usage in Express / Koa using TypeScript and Routing Controllers Framework.

remult - Full-stack CRUD, simplified, with SSOT TypeScript entities

TypeORM - ORM for TypeScript and JavaScript. Supports MySQL, PostgreSQL, MariaDB, SQLite, MS SQL Server, Oracle, SAP Hana, WebSQL databases. Works in NodeJS, Browser, Ionic, Cordova and Electron platforms.

zod - TypeScript-first schema validation with static type inference

proposal-decorator-metadata

nestjs-openapi3 - OpenAPI 3.x document generation and serving for NestJS.

arktype - TypeScript's 1:1 validator, optimized from editor to runtime

nestjs-auth - Comprehensive handling of authentication and authorization for NestJS.

reflex-metadata-SCKS

openapi-comment-parser - ⚓️ JSDoc Comments for the OpenAPI Specification