Echo JS 0.11.0

<~>

tracker1 comments

tracker1 1536 days ago. link 1 point
I think the biggest issues with form components is the styling to integrate modern toolkits.  I really like bootstrap, I also like mui, and that's about all I really like as far as web based components.

Beyond this, just checked, seems like every browser in wide use now supports WebComponents, which is very cool.  May have to start playing with it again.  Previously, the shims needed were just crazy huge to say the least.  Not too fond of many smaller downloads, but would be cool to create something modern-like without too many external libraries.
tracker1 1540 days ago. link 1 point
Really appreciate seeing that this only depends on individual D3 libraries as opposed to a closed source, or otherwise commercial library.
tracker1 1555 days ago. link 2 points
Would *REALLY* prefer to see an actual instruction writeup of the content in addition to, or even instead of the Video.  When looking for answers for stuff like this, you don't always want to sit for a video for something that could be mostly copy-paste from an actual article.
tracker1 1555 days ago. link 3 points
Nice: It's worth noting that if you don't push to your repo regularly, it will stop running the cron jobs after a while, iirc 90 days.  So it's not the most reliable thing for inactive builds.
tracker1 1555 days ago. link 2 points
NOTE: this will emphatically not work as expected when dealing with unicode or surrogate modifiers.  Realistically if you're using anything other than US-ASCII, tread carefully.
tracker1 1560 days ago. link 1 point
This isn't EchoCSharp or EchoDotNet... it's Echo JS.
tracker1 1561 days ago. link 1 point
TLDR; add TypeScript type annotations support directly to JS.

It might be a good idea, would also support a pragma statement near the top of a file to support JSX transforms in the box as a standard.
tracker1 1564 days ago. link 1 point
WARNING: GPLv3, can be argued that any application using this library must also be GPLv3, if you're serving this library on the internet, your entire application must provide source on request.

I tend to use the following library (MIT License): https://www.npmjs.com/package/mui-icons

Which wraps svg icons in a consistent way, compatible with the mui frameworks.  Provides access to several icon libraries including an expanded set of material icons (cmdi).
tracker1 1564 days ago. link 1 point
Nice to see this done by hand.  I do generally just defer to date-fns when I need to manipulate date-time logic though. Just depends on what you're doing.

I try to keep most app slices under 200kb for JS assets. With a shared library slices between 200k-500k.
[more]