Skip to content
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
88 changes: 87 additions & 1 deletion config/tools-manual.json
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,93 @@
},
"AsyncAPI Generator Templates": {
"description": "The following is a list of templates compatible with AsyncAPI Generator. You can use them to generate apps, clients or documentation from your AsyncAPI documents.",
"toolsList": []
"toolsList": [
{
"title": "Go Watermill Template",
"description": "Generates Go client using Watermill",
"links": {
"repoUrl": "https://github.com/asyncapi/go-watermill-template"
},
"filters": {
"language": "Go",
"technology": ["Watermill"],
"categories": ["generator-template"]
}
},
{
"title": "Node.js Template",
"description": "Generates Node.js client and server code",
"links": {
"repoUrl": "https://github.com/asyncapi/nodejs-template"
},
"filters": {
"language": "JavaScript",
"technology": ["Node.js"],
"categories": ["generator-template"]
}
},
{
"title": "Markdown Template",
"description": "Generates documentation in Markdown format",
"links": {
"repoUrl": "https://github.com/asyncapi/markdown-template"
},
"filters": {
"language": "Markdown",
"technology": [],
"categories": ["generator-template"]
}
},
{
"title": "Python Paho Template",
"description": "Generates Python client using Paho MQTT",
"links": {
"repoUrl": "https://github.com/asyncapi/python-paho-template"
},
"filters": {
"language": "Python",
"technology": ["Paho"],
"categories": ["generator-template"]
}
},
{
"title": "Dotnet RabbitMQ Template",
"description": "Generates .NET client using RabbitMQ",
"links": {
"repoUrl": "https://github.com/asyncapi/dotnet-rabbitmq-template"
},
"filters": {
"language": ".NET",
"technology": ["RabbitMQ"],
"categories": ["generator-template"]
}
},
{
"title": "Node.js WebSocket Template",
"description": "Generates Node.js client and server code using WebSocket",
"links": {
"repoUrl": "https://github.com/asyncapi/nodejs-ws-template"
},
"filters": {
"language": "JavaScript",
"technology": ["WebSocket"],
"categories": ["generator-template"]
}
},
{
"title": "TypeScript NATS Template",
"description": "Generates TypeScript client using NATS",
"links": {
"repoUrl": "https://github.com/asyncapi/ts-nats-template"
},
"filters": {
"language": "TypeScript",
"technology": ["NATS"],
"categories": ["generator-template"]
}
}

]
},
"Code-first tools": {
"description": "The following is a list of tools that generate AsyncAPI documents from your code.",
Expand Down
Loading