码迷,mamicode.com
首页 > Windows程序 > 详细

AsyncAPI 几个方便的工具

时间:2019-10-07 11:30:16      阅读:114      评论:0      收藏:0      [点我收藏+]

标签:alt   aml   info   variable   nes   class   line   evel   https   

AsyncAPI 类似openapi 也提供了一些周边工具

editor

类似openapi 的,但是目前官方已经不推荐使用了,推荐使用playground,以下是构建一个容器镜像

  • clone 代码
git  clone https://github.com/asyncapi/editor.git
  • 修改dockerfile
    默认的制作出来的镜像太大了
 
FROM node:9-alpine
?
RUN npm config set registry https://registry.npm.taobao.org
# Create app directory
RUN mkdir -p /usr/src/app
WORKDIR /usr/src/app
# set default node environment
ENV NODE_ENV development
?
COPY . /usr/src/app
?
# Install app dependencies
RUN npm install
?
EXPOSE 5000
?
CMD [ "npm", "start" ]
 
  • 使用docker-compose 管理
version: "3"
services:
  editor:
    build: ./
    image: dalongrong/asyncapi-editor:1.0.1
    ports:
    - "5000:5000"
  • 构建&&启动
docker-compose build && docker-compose up -d
  • 效果

技术图片

 

 

  • 说明
    镜像已经push dockerhub 了dalongrong/asyncapi-editor:1.0.1

playground

同上以下是镜像构建的过程

  • clone 代码
 
git  clone https://github.com/asyncapi/playground.git
  • 修改dockerfile
FROM node:9-alpine
?
RUN npm config set registry https://registry.npm.taobao.org
?
# Create app directory
RUN mkdir -p /usr/src/app
WORKDIR /usr/src/app
# set default node environment
ENV NODE_ENV development
?
COPY . /usr/src/app
?
# Install app dependencies
RUN npm install
?
EXPOSE 5000
?
RUN npm install -g forever
?
CMD forever -c "npm start" ./
 
  • docker-compose 文件
version: "3"
services:
  playground:
    build: ./
    image: dalongrong/asyncapi-playground:1.2.0
    ports:
    - "5000:5000"
 
  • 构建&&启动
docker-compose build && docker-compose  up -d
  • 效果

技术图片

 

 

  • 说明
    镜像也已经push dockerhub了 dalongrong/asyncapi-playground:1.2.0

generator

可以方便的通过yaml 定义文件生成代码,前边有使用过

参考资料

https://github.com/asyncapi/playground
https://github.com/asyncapi/editor

AsyncAPI 几个方便的工具

标签:alt   aml   info   variable   nes   class   line   evel   https   

原文地址:https://www.cnblogs.com/rongfengliang/p/11629570.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!