Finished my first FXHash piece with JSCL #430
Replies: 2 comments 4 replies
-
I don't do it like that. Instead, call compile-application from the outside, that generates lets' say an app.js file. Then you include that app.js in your html, together with jscl.js. No need to bootstrap jscl on every change. Also, I'm programming JSCL live from Emacs via websockets, using some new tools I'm working on. |
Beta Was this translation helpful? Give feedback.
-
Fantastic! It would be really nice to build a We could have an option for bundle it together or have a separate jscl.js / app.js and some other options. But exposing a single way to build apps would be nice. Another idea I had was to , compile each |
Beta Was this translation helpful? Give feedback.
-
Hi guys,
I just published my first piece on FXHash made with JSCL: https://www.fxhash.xyz/generative/10665
It's a progression on the example project that I finished earlier this week: https://gitlab.com/aerique/fxhash-jscl-example#fxhash-example-project-for-common-lisp (which output is more-or-less the same except more basic, more random and just a single layer).
It's still a simple project but nice to have something up to refer to and continue from.
Given the disclaimers that I read when I started playing around with JSCL, I was surprised how well it worked and how much of CL is actually supported. So thanks a lot! And I hope to be able to contribute to the project as well.
The limitations I ran into while working on this.
~X
support for FORMAT, fixed by just dropping down to JScompile-application
entry for my source file tojscl:bootstrap
and having to rebootstrap for every change (to be honest: I didn't really dive into fixing this)I was able to compile the bootstrapped
jscl.lisp
with the Google Closure compiler using theSIMPLE
setting, although I have no idea whether it improved things ;-)Beta Was this translation helpful? Give feedback.
All reactions