This repository has been archived by the owner on May 18, 2024. It is now read-only.
-
-
Notifications
You must be signed in to change notification settings - Fork 14
Home
Jeongho Nam edited this page Feb 7, 2023
·
2 revisions
Make anyorm
to be real typeorm
.
safe-typeorm
is a helper library of typeorm
, enhancing type safety like below:
- When writing SQL query,
- Errors would be detected in the compilation level
- Auto Completion would be provided
- Type Hint would be supported
- You can implement App-join very conveniently
- When SELECTing for JSON conversion
- App-Join with the related entities would be automatically done
- Exact JSON type would be automatically deduced
- The performance would be automatically tuned
npm install --save [email protected]
npm install --save safe-typeorm
Just install through npm install
command.
Note that, safe-typeorm
supports only typeorm
v0.2 yet.