Hacker News new | ask | show | jobs
by h1d 2805 days ago
You'd get more benefit if you're developing API where random others are consuming your code for them to use API properly.

But still, it can still save you from obvious mistakes even for a one man project.

1 comments

I agree but I’d pick graphql for that instead of typescript.
Not sure TypeScript and GraphQL are mutually exclusive.
They aren’t, but graphql would give you safer types in your api than typescript.
Not sure one gives you safer typing than the other in absolute. They both have a different context/purpose. TypeScript is great for typing a code base for function calls type of APIs, whereas GraphQL is great to express types for inter-system communication (usually over HTTP).

Using GraphQL to type your in-process API would be overkilled and would require quite a bit of contortionism, and while you can share same TypeScript types between your end-points interfaces (and can be a good first step), inter-process communication is better expressed with something like GraphQL or Protobuf.