Introducing GlintCode β¨
I've been building GlintCode, a lightweight scripting language for the browser that runs on top of JavaScript.
The goal is simple: make building browser apps easier with a clean, beginner-friendly API while still using the power of JavaScript under the hood.
Features
π Runs directly in the browser
π Uses <script type="glint">
π Built-in DOM helpers
π¨ Simple UI creation functions
π Built-in loop helpers
π¦ Optional module system
β‘ No build tools or compilation required
Hello, World
<script src="https://fast4word.github.io/glintcode/glint.js"></script>
<script type="glint">
page("Hello")
heading("Welcome to GlintCode", 1)
paragraph("Your first Glint app!")
button("Click Me", () => {
print("Hello from Glint!")
})
</script>
Why GlintCode?
JavaScript is incredibly powerful, but for beginners or small browser projects it can sometimes feel more verbo
Discussion
Be the first to comment
Add your perspective to get the discussion started.