├── .gitignore ├── README.md ├── ormconfig.json ├── package.json ├── src ├── entity │ ├── Category.ts │ └── Post.ts ├── index.ts ├── migration │ └── .gitkeep └── subscriber │ └── .gitkeep └── tsconfig.json /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typeorm/mongo-typescript-example/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typeorm/mongo-typescript-example/HEAD/README.md -------------------------------------------------------------------------------- /ormconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typeorm/mongo-typescript-example/HEAD/ormconfig.json -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typeorm/mongo-typescript-example/HEAD/package.json -------------------------------------------------------------------------------- /src/entity/Category.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typeorm/mongo-typescript-example/HEAD/src/entity/Category.ts -------------------------------------------------------------------------------- /src/entity/Post.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typeorm/mongo-typescript-example/HEAD/src/entity/Post.ts -------------------------------------------------------------------------------- /src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typeorm/mongo-typescript-example/HEAD/src/index.ts -------------------------------------------------------------------------------- /src/migration/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/subscriber/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typeorm/mongo-typescript-example/HEAD/tsconfig.json --------------------------------------------------------------------------------