Echo JS 0.11.0

<~>

tracker1 comments

tracker1 2023 days ago. link 1 point
Very nice... reminds me a lot of the windows screensaver... would be cool to use something like this as a base for a data visualizer for music playback, one of the things I really miss from the old WinAmp days when playing music.
tracker1 2025 days ago. link 1 point
Interesting... should add some notes on the API README.md file about needing a Yelp API key, etc.
tracker1 2025 days ago. link 1 point
Not sure about the exe that's in the template projects... didn't dig in myself and for what it's worth, not the one that downvoted.
tracker1 2026 days ago. link 1 point
Interesting... not sure why you would actually need a C++ (native node module) for this though... seems like just an in-process http+websocket server listening on a high port would fit the bill.  Could be simpler still if coordinating with a host to arrange webrtc.
tracker1 2027 days ago. link 2 points
This is a really cool idea conceptually... totally off topic though.
tracker1 2027 days ago. link 1 point
While somewhat informative, I think some things are a little bit muddied...  Jest actually uses Jasmine2, and Enzyme can be integrated into several of the test tools in question.  While wiring up Puppeteer can be a bit of a pain, the learning curve really isn't bad in practice.

On other problem is you have different options for different concerns. Unit testing react is not the same as integration or render testing. I happen to really like using Jest for most tests, and while I like chai/mocha more than Jasmine, Jest gives you more than just the test harness, it gives you parallel support as well as code coverage in the box.

Using Jest with puppeteer for integration/browser testing does take some work, but it's very nice in practice.
tracker1 2028 days ago. link 1 point
Interesting, but GPL3 license will be a non-starter for most use cases.
tracker1 2028 days ago. link 1 point
My only commend is it seems like socket.io is a bit overburdened and a faster/lighter socket server implementation might help... pretty cool all the same.
tracker1 2030 days ago. link 1 point
Interresting, though the article doesn't actually link to Cypress[1]. The first reference, or two, should absolutely link out to the project's home page.

I've been using Puppeteer with Jest myself, which isn't so much fun to setup, but has really been productive for me.

[1] https://www.cypress.io/
tracker1 2030 days ago. link 1 point
I don't think that Web Components will grow much as-is, it's cool for relatively discrete UI components, but the lack of non-string property support and a good story for state management, I think React is generally better for most use, but you can combine the two.

I also do think that Web Assembly projects will mature, and should a better DOM story come to bear fruit that will be really nice.  I have a feeling that access to Canvas and sound primitives will come ahead of general DOM access, which will have some really cool options for webifying more applications more easily.
[more]