A project to turn a file of JSON responses into TypeScript types
I haven't really tried to organize this code. I made this code strictly as i learned more about the problem space. So the code looks like exploratory code, not production ready code.
To me, it seems like there is going to be a several pass compiler for this to be a real deal here.
My needs have been met, i am unsure if I want to pursue this much further.
If anyone is interested in this, i can certainly help you get ramped up, whisper me twitter
Its currently disabled because its creating incorrect types. But i think i am pretty dang close to it being correct.
I have a new database at Netflix with +100 unique events without definitions. I will define them...
Here is a reason for why you could use it:
- You have too many JSON objects to develop types for other than naming.
- You may have enums that need to get pulled out.
- You want as compact possible representation
-
Clone
git clone git@github.com:ThePrimeagen/undefined.git
-
Dependency installation
yarn install
-
Have a file filled with json responses (check out
out
) -
The data can be handed in a few ways
cat <jsons_here> | npx ts-node src/undefined.ts stdin npx ts-node src/undefined.ts <json_here>
-
You want to save this to a file?
npx ts-node src/undefined.ts <json_here> > types.d.ts
You can specify what fields need to be lifted into enums. I make the assumption that enums are likely string values (though there is a case for me to fix this, PRs will be merged with little regard)
npx ts-node src/undefined.ts <json_here> --enums Foo,Bar > types.d.ts
This will take any top level fields on objects and attempt to pull out the values, convert it into an enum, put at top of definitions, and replace their type (usually string) as the enum.
Fix it and make a PR. The code is shitty because I rage wrote it all in ~1 hour on twitch.
Github sponsor or twitch prime babe!