egg-typegoose
v0.0.3
Published
Typegoose for egg
Downloads
14
Readme
egg-typegoose
typegoose plugin for Egg.js.
Install
$ yarn add @forsigner/egg-typegoose
Usage
Plugin
// {app_root}/config/plugin.ts
const plugin: EggPlugin = {
typegoose: {
enable: true,
package: '@forsigner/egg-typegoose',
},
}
Configuration
// {app_root}/config/config.default.ts
config.typegoose = {
url: 'mongodb://localhost:27017/test',
options: {},
}
Create entity files
├── controller
│ └── home.ts
├── model
├── Post.ts
└── User.ts
Model file
// app/model/User.ts
class User extends Typegoose {
@prop()
name?: string
}
export default User
Example
Questions & Suggestions
Please open an issue here.