asyncapi / parser-go

It parses AsyncAPI documents.
Apache License 2.0
55 stars 17 forks source link

Add Parser API and remove panic from beautifier #20

Closed fmvilas closed 5 years ago

fmvilas commented 5 years ago

What?

Fixes #3

Why?

To create an MVP of the parser. We can finally say this parser works, even though it's not yet ideal. We have a skateboard!

fmvilas commented 5 years ago

Had to change the API to make it compatible with C. Introduced a new package called cparser which is the one that exports the Parse method in C.

I tried using it from Node.js in Mac and it works beautifully :)

Will push the experiments on the Node.js side.

fmvilas commented 5 years ago

Here's the experimental Node.js code: https://github.com/asyncapi/parser-nodejs

rmelian commented 5 years ago

this is great :)