@4geit/swg-chatbox-model 中文文档教程
@4geit/swg-chatbox-model
使用 CRUD 运算符的聊天框功能的聊天框模型
Installation
- A recommended way to install @4geit/swg-chatbox-model is through npm package manager using the following command:
npm i @4geit/swg-chatbox-model --save
或使用 yarn
使用以下命令:
yarn add @4geit/swg-chatbox-model
- In your swagger file, you need to add a reference to the
SwgChatboxModel
definition under thedefinitions
property (e.g./api/swagger/swagger.yaml
) as below:
swagger: "2.0"
# ...
definitions:
SwgChatboxModel:
$ref: ../../node_modules/@4geit/swg-chatbox-model/swagger.yaml#/definitions/SwgChatboxModel
# ...
- SwgChatboxModel also comes along with some endpoints you can expose to the API, to do so you will need to add a reference to the
SwgChatboxModel
definition under thepaths
property (e.g./api/swagger/swagger.yaml
) as below:
swagger: "2.0"
# ...
paths:
/chatbox:
$ref: ../../node_modules/@4geit/swg-chatbox-model/swagger.yaml#/definitions/ChatboxListPath
/chatbox/{id}:
$ref: ../../node_modules/@4geit/swg-chatbox-model/swagger.yaml#/definitions/ChatboxItemPath
/chatbox/populate:
$ref: ../../node_modules/@4geit/swg-chatbox-model/swagger.yaml#/definitions/PopulatePath
# ...
您还需要将路径添加到 swg 的
包,这样 swagger-node 就会找到相关的控制器来使用。 编辑文件 controllers
文件夹-chatbox-model/config/default.yaml
并向属性 mockControllersDirs
和 controllersDirs
添加两个新路径,如下所示:
swagger:
# ...
bagpipes:
_router:
# ...
mockControllersDirs:
# ...
- node_modules/@4geit/swg-chatbox-model/mocks
# ...
controllersDirs:
# ...
- node_modules/@4geit/swg-chatbox-model/controllers
# ...
@4geit/swg-chatbox-model
chatbox model for the chatbox feature using CRUD operators
Installation
- A recommended way to install @4geit/swg-chatbox-model is through npm package manager using the following command:
npm i @4geit/swg-chatbox-model --save
Or use yarn
using the following command:
yarn add @4geit/swg-chatbox-model
- In your swagger file, you need to add a reference to the
SwgChatboxModel
definition under thedefinitions
property (e.g./api/swagger/swagger.yaml
) as below:
swagger: "2.0"
# ...
definitions:
SwgChatboxModel:
$ref: ../../node_modules/@4geit/swg-chatbox-model/swagger.yaml#/definitions/SwgChatboxModel
# ...
- SwgChatboxModel also comes along with some endpoints you can expose to the API, to do so you will need to add a reference to the
SwgChatboxModel
definition under thepaths
property (e.g./api/swagger/swagger.yaml
) as below:
swagger: "2.0"
# ...
paths:
/chatbox:
$ref: ../../node_modules/@4geit/swg-chatbox-model/swagger.yaml#/definitions/ChatboxListPath
/chatbox/{id}:
$ref: ../../node_modules/@4geit/swg-chatbox-model/swagger.yaml#/definitions/ChatboxItemPath
/chatbox/populate:
$ref: ../../node_modules/@4geit/swg-chatbox-model/swagger.yaml#/definitions/PopulatePath
# ...
And you will also need to add the path to the controllers
folder of the swg-chatbox-model
package so that swagger-node will find the relevant controller to use. Edit the file /config/default.yaml
and add two new paths to the properties mockControllersDirs
and controllersDirs
as illustrated below:
swagger:
# ...
bagpipes:
_router:
# ...
mockControllersDirs:
# ...
- node_modules/@4geit/swg-chatbox-model/mocks
# ...
controllersDirs:
# ...
- node_modules/@4geit/swg-chatbox-model/controllers
# ...
更多
你可能也喜欢
- 2d-array 中文文档教程
- 2factor 中文文档教程
- @0x706b/ts-transform-esm-specifier 中文文档教程
- @2s/typed 中文文档教程
- @4geit/rct-book-sample-component 中文文档教程
- @7senders/7s-component-library 中文文档教程
- @9softstudio/react-grid 中文文档教程
- @aaronpowell/apollo-server-logger-appinsights 中文文档教程
- @abc-pan/fe-utils 中文文档教程
- @abhijithvijayan/eslint-config-airbnb 中文文档教程