https://github.com/typescript-schema-generator/typescript-schema-generator
An extendable generator for TypeScript schemas.
https://github.com/typescript-schema-generator/typescript-schema-generator
code-generator nx open-api open-api-v2 open-api-v3 typescript
Last synced: 5 months ago
JSON representation
An extendable generator for TypeScript schemas.
- Host: GitHub
- URL: https://github.com/typescript-schema-generator/typescript-schema-generator
- Owner: typescript-schema-generator
- Created: 2023-02-28T20:57:25.000Z (over 3 years ago)
- Default Branch: main
- Last Pushed: 2023-04-08T22:26:17.000Z (about 3 years ago)
- Last Synced: 2025-01-26T12:26:29.122Z (over 1 year ago)
- Topics: code-generator, nx, open-api, open-api-v2, open-api-v3, typescript
- Language: TypeScript
- Homepage:
- Size: 206 KB
- Stars: 0
- Watchers: 0
- Forks: 0
- Open Issues: 20
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# TypeScript Schema Generator
[](https://opensource.org/licenses/MIT)
[](https://app.codacy.com/gh/typescript-schema-generator/typescript-schema-generator?utm_source=github.com&utm_medium=referral&utm_content=typescript-schema-generator/typescript-schema-generator&utm_campaign=Badge_Grade)

The [core package](packages/core/README.md) of this mono repository is responsible for rendering TypeScript types and therefore entire schemas.
## Development Prerequisites
- Make sure you have the [Node.js runtime](https://nodejs.org) installed.
- Make sure you are using Node.js version 18. A simple way to switch versions is with the npm package [n](https://www.npmjs.com/package/n).
```bash
npm install --global n
```
```bash
sudo n 18
```