Echo JS 0.11.0

<~>

xat comments

xat 2965 days ago. link 3 points
I already thought 2016 would end without a new package manager ;)
xat 2985 days ago. link 1 point
I used to use underscore/lodash for nearly everything a few years back. Nowadays, I prefer using the build-in array methods (map, filter, reduce, some, etc.) and only use lodash where it really makes sense too me.

We also used Ramda in some projects. Although it really is nice... after leaving the codebase for a few months and then coming back, it was quite challenging to understand what we did back then :)
xat 3011 days ago. link 2 points
In case of TypeScript:

I think it can be nice if you are either developing a library with not many dependencies or you are working in a ecosystem which embraces types (like angular2).

In all other cases I agree with @igl that it adds too much noise to your project.
xat 3021 days ago. link -1 point
I think Angular 2 will be mainly used in a smaller enterprise niche. Guess it will be as popular as ExtJS was in 2010.
xat 3042 days ago. link 1 point
The module situation in the JS ecosystem is terrible these days. They should have just choosen CommonJS or AMD to be the standard instead of inventing something new.
Yes, tree-shaking is nice... but it does not justify the fragmentation we currently have and all the build/transpile insaneness.
xat 3073 days ago. link 5 points
Seems like a bunch of fake up-votes.
xat 3076 days ago. link 1 point
Ah I wasn't aware that the built version was published on npm. Thanks for pointing that out. I downloaded the library and ran the build process myself. NPM install pulled in about 100MB dependencies. This seemed really overkill for a 30 LOC mini library.

IMHO the majority of the web does not use stuff like Webpack / Babel (yet). Just look at all those Wordpress, Joomla installations and apps older than 2 years. So being able to pull in a frontend library via script-tag is still a must in my opinion.
xat 3076 days ago. link 1 point
I also like the library. The only thing that I don't like is that it needs Webpack/Babel to be built. Changing 2 lines of code would make it ES5 compatible out of the box.
[more]