Hello,
I am working on application to add blockly ide to my react webapp. I am converting the block code into JS code and running it using js-interpreter package. But while running this program my app is crashing :var i; for (i = 1; i <= 10; i++) { }; due to unexpected token.
I don't want my app to crash so is there any way to stop my react app from crashing by identifying error.
Is there any way to convert my block code into other language so that interpretation would work.
Please help if anyone has ever worked on this issue. I want to execute block based code and provide an output. thanks in advance.