Jtalk is an implementation of the Smalltalk language that runs on top of the JavaScript runtime. It is designed to make client-side development faster and easier.
Jtalk is written in itself, including the parser and compiler. Jtalk compiles into efficient JavaScript, mapping one-to-one with the equivalent JavaScript. There is no interpretation at runtime.
Try a right now!
If you enjoy my work on Jtalk, you can
the project.
Client-side usage
Load the full Jtalk Smalltalk environment with the IDE in your page:
<script src="js/jtalk.js" type="text/javascript"></script>
<link rel="stylesheet" type="text/css" href="css/jtalk.css"/>
Or the deployment JavaScript file only (without the Smalltalk parser or compiler):
<script src="js/jtalk.deploy.js" type="text/javascript"></script>
Read the documentation to learn more about writing applications in Jtalk.