Echo JS 0.11.0

<~>

ilyavf comments

ilyavf 1273 days ago. link 1 point
The article describes a case of using technologies like WebAssembly, BrowserFS and MessageChannel API.
ilyavf 2441 days ago. link 2 points
Nice article about how to maintain a large, multi-repository project.
+1 for Greenkeeper and Landscaper!
ilyavf 2694 days ago. link 2 points
I am using StealJS for almost two years now for a number of projects. IMHO its the best option to work with ES6 (especially that you can debug in browser against the original ES6 source code), but also it supports other formats (CommonJS, AMD) and can load other stuff (like CSS, LESS/SASS, CoffeeScript, etc).

StealJS is a fork of SystemJS and has all its features, and also is a bundler.

Glad that finally it reached the 1.0 milestone!
ilyavf 2876 days ago. link 6 points
This feels like a job post or an ad...
ilyavf 2917 days ago. link 1 point
Why would you recommend this? There is a whole bunch of logic being invoked when you use non-strict comparison, so performance is one of the reasons.
ilyavf 3313 days ago. link 1 point
> Furthermore, supporting many module formats is unlikely a perk for any dev team

Here are two real usecases for a multi-format loader:

- What about an existing project, that can be already in one format, and team decides to switch to a different one?

- Also, bower component formats could be different from yours.
ilyavf 3316 days ago. link 1 point
Did you work with stealjs before? What module loaders do you like/use?
ilyavf 3317 days ago. link 1 point
Yesterday I read this article and felt myself out of the modern development stream, like "stuck in early 2000 with script and link tags". I use RequireJS a lot, but haven't heard about css/less and template loaders before (yes, you can import a LESS file into a module with one line as a dependency).

StealJS optimizes caching and resource requests. It uses "two pass bundling algorithm" to combine dependencies/modules into bundles in the most effective way (watch the 1st 4minute video in the article about it). If you heard about WebPack, you know what a module bundler is. StealJS does even more in this direction.

It was designed to support a "modlet" workflow (watch the 2nd 6 minute video about this).

Works well for progressively or statically loaded sites. 

Another major difference from other module loaders (like RequireJS) is that StealJS can import modules from any format (AMD, CommonJS, ES6) and import to any format.
[more]