Home - samchon/safe-typeorm GitHub Wiki

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

Setup
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.