Check out RuntimeX's developement
Click me!What's RuntimeX?
RuntimeX is a vanilla javascript library that allows you to write Runtime code in script tags.How do i use it?
First, head over to the Download page to get the latest version of RuntimeX. Then, you can write RuntimeX in your code like this:<script type="text/runtime">
START
:MAIN
ECHO "Hello RuntimeX!"
SET "test" "This is a variable!"
ECHO test
:MAIN END
:RUNTIME
ECHO "This code runs every second!"
ECHO "Also, you don't need to make everything uppercase!"
SET "test2" "This is another variable!"
:RUNTIME END
</script>