Echo JS 0.11.0

<~>

jaleksic comments

jaleksic 1158 days ago. link 2 points
Not sure what you mean, but I have a feeling.
Normally you wouldn't see the "navigated to" message, because quickly after it, devtools are restarted for the new page. Console and network logs are emptied and started again.

However, there is an option and a checkbox for "preserve log". If that is enabled, you should be able to see these messages because the old logs will not be removed when a new url is loaded.
jaleksic 1199 days ago. link 2 points
Good stuff, interesting. However, I really had to laugh at "in a faster, better compiled, and optimized language like Python or Rust"
Still have to chuckle 🤭
jaleksic 1256 days ago. link 1 point
Messed up the title. Should be 

Bookmarklets for listing gitlab secrets and copy them
jaleksic 1355 days ago. link 2 points
..and it's actually an incorrect one-liner omitting the `key` prop... :)
jaleksic 1409 days ago. link 2 points
I'm following echojs for years, and I happened to need just this just now, so I actually appreciate the link.
jaleksic 1478 days ago. link 1 point
Darn! I accidentally hit downvote - I'm so sorry!
@tracker1 feel free to revert that, if it's possible
jaleksic 1535 days ago. link 2 points
Very interesting topic in my opinion, but the article is really hard to read (possibly a machine-based translation). Also, while it indicates the problematic areas, it doesn't go into possible solutions, but I guess that's fine - the title says it's about the struggle :)
jaleksic 1598 days ago. link 2 points
I think that compiles-to-js doesn't count in this context, because that can be said about a great many languages. And I think what makes typescript different here is that it's a superset of Javascript. Coffeescript, well. Haven't seen it much lately :)
Also, personally I am not interested in webassembly articles on echojs although I am interested in the technology - I think it's simply a differently world, and probably deserves and has it's own community. I have a similar opinion about flutter and dart.

If I were interested in let's say HTML and had an aggregator for that, I wouldn't want react or JS there, even if we use it to produce HTML.
jaleksic 1608 days ago. link 2 points
Since you don't support objects as in e.g `classnames({ isActive })`, I guess you might improve performance a little by using `typeof arg === 'string'` instead of the more expensive `Array.isArray(arg)` call.
[more]