ArcScript is a transpiled (source to source compiled) language that transpiles to JavaScript. It's a simple language that gets rid of JavaScript boilerplate for both regular syntax and DOM manipulation.
ArcScript has two main use-cases:
Developers can use it to build frontend applications blazingly fast without worrying about JavaScript boilerplate
Educators can use it as a teaching tool for children who have learnt HTML and CSS but might not be able to completely grasp Python or C. This will help them to instil passion towards Computer Science in them by allowing them to easily build their own frontend mini game with minimal code and new concepts.
Install ArcScript with pip
pip install arcscript
You can also clone it locally
git clone https://github.com/aditya-tiwari108/ArcScript.git
cd ArcScript
pip install -r requirements.txt
If you installed using pip
arcscript input.arc output.js
If you cloned it locally (assuming you are in the root directory of repo)
python main.py input.arc output.js