« BackMicrosoft TypeSpectypespec.ioSubmitted by bundie 4 hours ago
  • 9dev 3 hours ago

    I just don’t get why they absolutely had to come up with new syntax. All of this would have been possible with standard Typescript, unlocking heaps of existing tooling, editor support, and prior knowledge. But no! Let’s come up with a new language, bespoke compiler, new LSP and IDE integrations, and make developers learn yet a new DSL.

    It’s creating changes for the sake of creating changes.

    • bterlson 2 hours ago

      We first tried a TypeScript DSL and I really wish it would have worked for our use cases (e.g. describing complex REST APIs in Azure), but unfortunately it didn't.

      I explained a bit more here last time TypeSpec was on here: https://news.ycombinator.com/item?id=39843184

      • sixhobbits 3 hours ago

        https://www.speakeasy.com/guides/api-frameworks/typespec

        This post has a bit more detail about why "we don't need more standards" might not be the correct take here

        (Disclaimer speakeasy is a client but I wasn't directly involved in writing this and just figured it's pretty relevant here)

        • startupsfail 2 hours ago

          Pydantic/FastAPI - it is well designed, industry proven. Doesn’t need custom DSLs.

          • samier-trellis 2 hours ago

            Came here to post this. We use Django Ninja at work (basically FastAPI style endpoints for Django), and it automatically does OpenAPI and Swagger docs for us. Whatever web framework one chooses in whichver language should def have this built-in by now, IMO, seems like tablestakes for anything larger than a "micro-framework"

        • thrance 2 hours ago

          Off the top of my head, I don't think you can perfectly describe the type (string format) of an UUID in typescript types, which you can do with OpenAPI. That may be a reason.

          • n2d4 2 hours ago

            You can do it with template string types: https://ybogomolov.me/type-level-uuid

            • erikerikson 2 hours ago

              See n2d4's comment but also AJV's JSONSchemaType

              import { JSONSchemaType } from 'ajv'

              It will bridge the JSON Schema and TypeScript types

              We've found this useful too:

              import { OpenAPIV3_1 as oa } from 'openapi-types'

              export type Schema<T> = JSONSchemaType<T> & oa.SchemaObject

              We validate that the type aligns with the schema and load the schema to validate all incoming requests

              • bterlson 2 hours ago

                You can get by, e.g. you can use JSDoc comments describing format or pattern, generic types taking a parameter of either format or pattern along with a base type, or create a custom well-known type you define as having the properties of a UUID. But aside from comments, this is not reflected well in the tooling, and none of these options compose particularly well.

              • crowdyriver 2 hours ago

                It's even worse, you still need node to run this thing, so you don't avoid the node dependency.

                • pc86 2 hours ago

                  You don't get a bonus and promotion for just using TypeScript.

                  • ActionHank 2 hours ago

                    Facts, bonus-driven "innovation".

                    Also why Google has so many dead products.

                  • wg0 3 hours ago

                    "Looks good on my CV" syndrome.

                    • dham 2 hours ago

                      I'm not sure why you're getting downvoted. It might be hitting too close to home for some. But yeah, 95% of developers choose things to do to boost them for the next job.

                      • wg0 2 hours ago

                        I believe that 99% of the time, a reuse of older technologies results in greater innovation that is more stable and a return is multiple of the underlying foundations.

                        This applies here as well. Typescript could go a long way.

                        But admittedly, writing a grammar, parser and then a whole compiler along with its tooling of a new DSL is fun for sure but does look good on CV as well.

                        I didn't say anything more than that.

                        • jitl an hour ago

                          I downvoted both of your comments because I think it's rude and insulting to assume the motivation of someone's work is self-aggrandizing, and to dismiss out of hand the work might be motivated by technical needs because you can't immediately recognize those needs. I find the attitude frustrating, similar to the other common HN dismissal of "I could build it in a weekend".

                    • recursivedoubts 2 hours ago

                      > Create a new TypeSpec project

                      > Run the following command in a clean directory to create a new TypeSpec project.

                      > tsp init

                      > This will prompt you with a few questions. Pick the Generic REST API template...

                      I’d just like to interject for a moment. What you’re referring to as REST, is, in fact, JSON/RPC, or as I’ve recently taken to calling it, JSON plus RPC. JSON is not a hypermedia unto itself, but rather a simple data format made useful by out of band information often specified with tools such as your TypeSpec project or similar.

                      Many computer users work with a canonical version of REST every day, without realizing it. Through a peculiar turn of events, the version of REST which is widely used today is often called “The Web”, and many of its users are not aware that it is basically the REST-ful architecture, defined by Roy Fielding.

                      There really is a REST, and these people are using it, but it is just a part of The Web they use. REST is the network architecture: hypermedia encodes the state of resources for hypermedia clients. JSON is an essential part of Single Page Applications, but is useless by itself; it can only function in the context of a complete API specification. JSON is normally used in combination with SPA libraries: the whole system is basically RPC with JSON added, or JSON/RPC. All these so-called “REST-ful” APIs are really JSON plus RPC.

                      • Alupis 2 hours ago

                        Eagerly awaiting AsyncAPI Support: https://github.com/microsoft/typespec/issues/2463

                        AsyncAPI support would make TypeSpec the end-all/be-all API spec tool for a lot of people.

                        TypeSpec looks amazing - but until we can go "all in" on using it for both our external and internal API, it's difficult for the team to justify yet another new DSL. It's needs to support all of our common API definition woes, and currently it only addresses 50%.

                        • meindnoch 2 hours ago

                          How many times have we invented this particular wheel already?

                          • otabdeveloper4 25 minutes ago

                            OpenAPI (formerly known as Swagger) is the actual standard in this problem space.

                            It's good enough and these bespoke solutions that add nothing but DSL syntactic sugar are dead on arrival.

                            • agentultra 2 hours ago

                              https://www.servant.dev/

                              It’s an evergreen project. I’ve seen various incarnations of this since the 90s.

                              • whynotmaybe 2 hours ago

                                The xkcd about "standards" is from 2011, so a lot ? https://xkcd.com/927/

                              • coreyh14444 3 hours ago

                                This came up a few months ago here: https://news.ycombinator.com/item?id=40206124

                                • miohtama 19 minutes ago

                                  Looks nice!

                                  Any recommendations for Python backend integration?

                                  • ChrisArchitect an hour ago

                                    Related April 2024:

                                    Introducing TypeSpec: A New Language for API-Centric Development

                                    https://typespec.io/blog/2024-04-25-introducing

                                    (https://news.ycombinator.com/item?id=40206124)

                                    • gjmveloso 2 hours ago

                                      It’s a lot of language for a DSL to define services. Smithy[1] sounds more balanced and extendable

                                      [1]: https://smithy.io/2.0/index.html

                                      • unshavedyak 2 hours ago

                                        Is there a good UI for this? I want to love OpenAPI but for complex JSON i've found OpenAPI UI's to be unusable. At this point i'd hand write my API specifications if it meant i could have a useful UI.

                                        • Alupis 2 hours ago

                                          TypeSpec is a specification document generator - it outputs OpenAPI specification files, which you can feed to any OpenAPI documentation generator, such as Swagger or Redocly.

                                        • kingkongjaffa 2 hours ago

                                          If I’m a lowly nerdling writing a backend in express and typescript, what do I use this for?

                                          • ActionHank 2 hours ago

                                            Generating client code to query your apis with function calls. Mostly useful when you have more than one client codebase.

                                            • Alupis 2 hours ago

                                              This is part of the Api-First paradigm. Instead of your controllers/handlers being the authoritative "Truth", the API spec is.

                                              You and your team spend time arguing/debating the API from the perspective of a user. "I need X data from Y service", etc. The document then becomes the "blueprint" for your system.

                                              Think of it as TDD but viewed from a different angle. In a microservices system, this has a tremendous amount of advantages, including being able to codegen your handlers and models, maintain consistency across the entire API, unified api documentation, increase testability of your controller/handler interface, and more.

                                            • mdaniel an hour ago

                                              > list(@query filter: string): Store[];

                                              I despise "hidden" languages smuggled in string types. Both Microsoft <https://learn.microsoft.com/en-us/graph/filter-query-paramet...> and Google <https://google.aip.dev/160> are terrible about these embedded languages

                                              Since Microsoft is one of the offenders, how about any novel type system try and model their own API and only when that's possible should they taut their superiority over the existing, proven standards

                                              • drewda 2 hours ago

                                                Originally this project also advertised support for GraphQL, but never implemented it: https://github.com/microsoft/typespec/issues/1390

                                                Would be compelling to have a way to represent both OpenAPI and GraphQL in a common upstream schema...

                                                • bterlson 2 hours ago

                                                  It is being worked on. The best place to follow the development is our discord, there's a channel for graphql.

                                                  • drewda 14 minutes ago

                                                    Good to hear. Thanks!

                                                • activitypea 2 hours ago

                                                  The syntax leaves a bad first impression. I'm getting flashbacks to Java EE/JAX-RS days.

                                                  • andremedeiros 3 hours ago

                                                    What does this do that Protobuf doesn't?

                                                    • codeflo 2 hours ago

                                                      Unions, generics, required fields, default values, enums that don't pollute the global namespace are things that immediately caught my eye. I assume it also doesn't repeat Protobuf's the mistake of not being able to distinguish between a missing string value and an empty string value.

                                                      Protobuf is old, and has some really strange warts that are only explainable historically (for example, by reference to the behavior of C++, which used to be Protobuf's primary target).

                                                      • frankfrank13 2 hours ago

                                                        I have long used protobuf as the source of truth for API's, but it does have some weird idiosyncrasies since its primarily a binary spec, and doesn't always transfer to json well (e.g optionals, maps, etc).

                                                        • andremedeiros 2 hours ago

                                                          That's totally fair feedback. Particularly optionality having been removed from proto2 to proto3 is confusing.

                                                        • bterlson 2 hours ago

                                                          As someone who works on TypeSpec, my feeling is that they are mostly different things. TypeSpec is a general purpose DSL which supports "emitting" to protobuf and other things, but in and of itself doesn't prescribe any particular protocol or serialization format.

                                                          • afavour 3 hours ago

                                                            > TypeSpec's standard library includes support for OpenAPI 3.0, JSON Schema 2020-12 and Protobuf.

                                                            • andremedeiros 3 hours ago

                                                              Gotcha. I think this might be where Protobuf falls short because you have to "source" the tooling for all its different outputs, but support for OpenAPI 3.0 spec generation has existed for over a year.

                                                            • davedx 3 hours ago

                                                              Protobuf is a binary spec isn’t it?

                                                              • andremedeiros 2 hours ago

                                                                The default transport (gRPC) certainly is, but HTTP RPC translation/gateways are easily generated.

                                                              • jjkaczor 3 hours ago

                                                                Microsoft NIHS (not-invented-here-syndrome)

                                                                • whimsicalism 3 hours ago

                                                                  yeah like when they uselessly reinvented flow with typescript

                                                                  also reinventing atom with vscode.

                                                                  • maleldil 3 hours ago

                                                                    To Microsoft's credit, both are better alternatives, with VS Code being _significantly_ superior to Atom.

                                                                    • Philpax 3 hours ago

                                                                      I think that was the grandposter's sarcastic point.

                                                                      • whimsicalism 3 hours ago

                                                                        yes sorry, i should be more explicit going forward

                                                                      • seanw444 2 hours ago

                                                                        Superior in performance and easy-of-use, which for most people is all that matters. Atom still won in general "hackability", which was one of its main selling points. Unfortunately that didn't stick, and the kind of people that want a hackable-to-the-core editor are probably using Emacs. I know I am.

                                                                        • greener_grass 3 hours ago

                                                                          TypeScript wasn't better than Flow when it gained dominance. It happened because Microsoft created an out-of-the-box experience with VS Code that worked great with TypeScript but made Flow types look broken.

                                                                          • jitl 2 hours ago

                                                                            More generally Microsoft treated Typescript as a product - they built it based on feedback from outside users and worked hard to make it easily adoptable and to grow a community around it. They are also "pragmatic" - willing to have weird, unsound semantics if it's needed to help people adopt Typescript and model existing JS ecosystem patterns.

                                                                            Flow has always been an inwardly-focused project that is for Facebook's needs first. The Flow team at FB made an explicit decision to focus more on compiler performance improvements (what Facebook's usage needed) over outside users & community.

                                                                            • mmv an hour ago

                                                                              The way I remember, when flow was introduced, you had to do small changes to 3rd party dependencies your code might have had to make them flow-compatible.

                                                                              With typescript you could just write a type definition file for any 3rd party library, so you could essentially make any 3rd party dependency "typescript compatible" without needing to change its code.

                                                                              This small difference made a huge impact for adoption. Eventually flow also got that feature but by then the adoption difference was already too big.

                                                                              • robertlagrant 2 hours ago

                                                                                From what I remember TypeScript was a superset of Javascript, so you could just rename your files and enable TypeScript and it all worked, and then gradually move stuff over. That probably helped a lot.

                                                                            • WorldMaker 2 hours ago

                                                                              Not just to ruin a fun joke with silly facts, but key parts of VS Code predated Atom.

                                                                              • whimsicalism 36 minutes ago

                                                                                not the part where they actually released it and not electron aka atom shell

                                                                                • WorldMaker 29 minutes ago

                                                                                  It was released. It was on a growing number of webpages and an important part of the Dev Tools of IE9+ (also giving them a massive install base from before Atom existed). If Atom didn't build Electron what became the VS Code team might have built something similar on their own eventually (though it probably would have been IE-based and Windows-only in that alternate history). It truly seemed convergent evolution at work.

                                                                        • undefined 2 hours ago
                                                                          [deleted]
                                                                          • that70sshow 2 hours ago

                                                                            why should one use this if both thrift and protobuf solves 90% of the needs.

                                                                            • undefined 2 hours ago
                                                                              [deleted]
                                                                              • paxys 2 hours ago

                                                                                Normally I'm happy with efforts like these, but do we really need another standard? Just use OpenAPI directly folks.

                                                                                • antonyt 2 hours ago

                                                                                  How often are people hand-writing OpenAPI specs? At least in my experience, such specs are generated from some "authoritative" implementation. This looks like it aims to move the contract-y bits into something less verbose than OpenAPI and less tied to a specific implementation.

                                                                                  • miohtama 14 minutes ago

                                                                                    I did. I cannot recommend this approach - you often gain little for a lot of pain for editing Yaml. Better just use DSL in your backend language and generate the spec.

                                                                                  • jitl an hour ago

                                                                                    Hand writing OpenAPI is horrible in my experience. Maybe it's particularly bad because we have a lot of small types that are nested into each other and get composed together a lot, but at the end of the day our OpenAPI YAML needs to be about 1.2MB and I just can't see maintaining that by hand in a text editor.

                                                                                    • robertlagrant 2 hours ago

                                                                                      Isn't OpenAPI specific to REST? The page also mentions protobuf, for example. Being able to generate clients and servers for those things might be useful, although how well it integrates with the client/server technologies will be the hard bit.

                                                                                      • otabdeveloper4 20 minutes ago

                                                                                        No, OpenAPI has nothing to do with REST. (In fact REST API's are an extra pain in the ass to desribe properly in OpenAPI.)

                                                                                      • Etheryte 2 hours ago

                                                                                        Agreed, OpenAPI is battle tested and has all the tooling I could ever dream of and then some. It doesn't matter who needs to consume it, there's tools for any and every language.

                                                                                        • kriiuuu 2 hours ago

                                                                                          AWS also has it’s own implementation of this with smithy

                                                                                        • undefined 3 hours ago
                                                                                          [deleted]
                                                                                          • henning 2 hours ago

                                                                                            Oh, so if I want to add a simple checkbox boolean field on a model on a proper best practices Clean Code Uncle Bob-approved code base in 2024, I have to:

                                                                                            - add it in the database model

                                                                                            - make a database migration for the field

                                                                                            - add it in the DTO for the API because we don't want to couple our persistence layer to our business logic or something

                                                                                            - add it to gRPC/Protobuf models so other services can call it

                                                                                            - add it to the new TypeSpec model thing

                                                                                            - update tests of all of the above

                                                                                            I love in tech 2024, it's full of people who talk about "DRY" who force you to repeat the same things over and over again, and this is "clean code", and if you don't like it, fuck you, you aren't a "culture fit". Utterly batshit insane.

                                                                                            • outlore an hour ago

                                                                                              I understand your frustration, but this is the price paid for schema compliance across systems.

                                                                                              One qualification: the TypeSpec model should help generate your API DTOs (OpenAPI, Protobuf) etc. So hopefully that saves a step or two.

                                                                                              As an aside, I have tried doing a full stack TypeScript application where database types trickle down to the client, it ended poorly, since the API affordances can and should evolve separately from the database design. Therefore, I do feel that separation of database and API types is necessary.

                                                                                              • miohtama 13 minutes ago

                                                                                                Now, let me tell you about microservices... (:

                                                                                              • undefined 2 hours ago
                                                                                                [deleted]