2017-10-19 59 views
1

我有一個nodejs項目,實現了許多請求並由apiDoc完善記錄,我想從它創建一個Postman集合!如何將apiDoc轉換爲郵差收集?

> example: 

/** 
    * @api {GET} config/updates Updates - Get the latest event updates 
    * @apiGroup Config service 
    * @apiDescription This api endpoint provides the latest updates that need to be fetched by the client. It provides 
     * an array of events, based on either the latestupdate (timestamp) param, or a configured interval (currently default to 1 minute. 
... 
.. 
    */ 

可以從apiDoc創建一個郵差集合嗎?

回答

1

您可以將您的apiDoc導出到Swagger,然後將其導入到郵差。

1.Export到揚鞭

  • 安裝此npm-package

  • NPM安裝apidoc-招搖-g

  • apidoc-招搖-i示例/ -o DOC /(例如是輸入並且doc是輸出)

2.導入Postman

郵差支持swagger文件,所以你可以導入它沒有問題,你可以閱讀有關它here閱讀'導入招搖'部分。

npm包可能無法正常工作,因爲它似乎已過時。

+0

謝謝:D! 我檢查了這個npm模塊,發現代碼有一些錯誤,但是最終我修復了它們,結果(* .json)很好。 –

+0

@KrauszLórántSzilveszter尼斯,非常歡迎和感謝:D請分享您的編輯? –

+0

https://github.com/fsbahman/apidoc-swagger/issues/34 –