How to develop without playground? #1887
-
I like this project and I try to make something out of it. My question is how do I develop outside of playground? For instance, I want to edit my Lexer and Parser in VS Code but at the same time I want commands that will generate diagram and output. If I know how, I might write and VS Code extension that will create preview and show diagram or output. I accidentally clicked a link and lost all my changed in playground. That is why I want to start building parser in VS Code but be able to check diagram and output constantly during development. |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 2 replies
-
Hello @Serhioromano 👋 The playground was never meant for productive use, just small "games"... Regarding a template for a "local-playground + diagrams"There does seem to be a lack here. But this is without its own So this is definitively something that could be contributed to the examples folder, e.g:
Are you interested in trying to contribute this? Regarding a VSCodeThis is significantly more complex, but could also provide great value, such an extension could:
This would be an interesting project, just not one I have the time for right now ;) |
Beta Was this translation helpful? Give feedback.
Hello @Serhioromano 👋
The playground was never meant for productive use, just small "games"...
Regarding a template for a "local-playground + diagrams"
There does seem to be a lack here.
There is a very old example of using the diagrams locally:
But this is without its own
package.json
and relevantnpm scripts
So this is definitively something that could be contributed to the examples folder, e.g:
examples/playground
folderAre you interested in trying to contribute this?
R…