splitting my app in chunks when writing it in storage is not a good idea: if it can not be saved in the first place, it means it won't fit in RAM when read
as I have my own pipeline to bundle and minify my app, I will disable IDE minification in the future. This way it will be easier to get consistent results between stored app & REPL app.
I've reached my limit as a web developer: the way I approached my app, with beautiful and reusable classes, icons as images, and intensive event usage, does not work in such constrained environment. I'll be more pragmatic now
@allObjects my source code is split in different modules, and I use rollup & babel to transpile and bundle them in one file. Is there a way to split the app on the Bangle itself, using different "files" in storage?
Espruino is a JavaScript interpreter for low-power Microcontrollers. This site is both a support community for Espruino and a place to share what you are working on.
Hey folks!
Thanks for the quick answers.
few takeaways:
splitting my app in chunks when writing it in storage is not a good idea: if it can not be saved in the first place, it means it won't fit in RAM when read
as I have my own pipeline to bundle and minify my app, I will disable IDE minification in the future. This way it will be easier to get consistent results between stored app & REPL app.
I've reached my limit as a web developer: the way I approached my app, with beautiful and reusable classes, icons as images, and intensive event usage, does not work in such constrained environment. I'll be more pragmatic now
@allObjects my source code is split in different modules, and I use rollup & babel to transpile and bundle them in one file. Is there a way to split the app on the Bangle itself, using different "files" in storage?