https://github.com/anonrig/sequelize-naming-strategy
Sequelize naming strategy for TypeORM to ease the pain of migration
https://github.com/anonrig/sequelize-naming-strategy
migration nodejs nodejs-server sequelize typeorm typescript
Last synced: 5 months ago
JSON representation
Sequelize naming strategy for TypeORM to ease the pain of migration
- Host: GitHub
- URL: https://github.com/anonrig/sequelize-naming-strategy
- Owner: anonrig
- License: mit
- Created: 2020-05-06T17:12:59.000Z (about 6 years ago)
- Default Branch: master
- Last Pushed: 2021-08-03T19:52:44.000Z (almost 5 years ago)
- Last Synced: 2025-08-09T15:48:19.003Z (11 months ago)
- Topics: migration, nodejs, nodejs-server, sequelize, typeorm, typescript
- Language: TypeScript
- Homepage: https://relevantfruit.com
- Size: 2.62 MB
- Stars: 3
- Watchers: 2
- Forks: 0
- Open Issues: 22
-
Metadata Files:
- Readme: README.md
- Changelog: CHANGELOG.md
- License: LICENSE
- Code of conduct: CODE_OF_CONDUCT.md
Awesome Lists containing this project
README
# Sequelize Naming Strategy for TypeORM
[](https://greenkeeper.io/)
[](https://travis-ci.org/relevantfruit/sequelize-naming-strategy)
[](https://codecov.io/gh/relevantfruit/sequelize-naming-strategy)
[](http://commitizen.github.io/cz-cli/)
[](https://prettier.io/)
[](https://semantic-release.gitbook.io/semantic-release/)
[](https://github.com/typescript-eslint/typescript-eslint)
[](https://relevantfruit.github.io/sequelize-naming-strategy/)
[](https://www.npmjs.com/package/sequelize-naming-strategy)
## Quick Start
Install package using `npm i --save sequelize-naming-strategy`
```typescript
import { createConnection } from 'typeorm';
import { SequelizeNamingStrategy } from 'sequelize-naming-strategy'
await createConnection({
...
namingStrategy: new SequelizeNamingStrategy()
});
```