Earlier quoted context omitted.
> "a small app built on ec6/7 babel, npm, jspm, system.js, aurelia, gulp, etc" Part of the problem with the Javascript ecosystem is that you have to use so many different tools/libraries to create a "simple" app.
Every language these days has its "stack" for development. Sure you could sit down with vim and javac and write a "simple app". But once you use Gradle/Maven to handle dependencies and build process. Once you use a nice unit testing framework... Why on earth would you not just fire it up and tune it for every project? Ruby, C# and every other language I've used has this "development stack" mentality, and now when I t…
ECMAScript 2015 Approved
61–70 of 108 posts
Re: ECMAScript 2015 Approved
#62Re: ECMAScript 2015 Approved
#63Re: ECMAScript 2015 Approved
#64oh brother does their (` ` based) web layout need an update!
I do a lot of web design and you often have to use table for compatibility reasons or straight up no other way is supported (vertical alignment or same height for example, even if flexbox does it now IE 8 doesn't support it)
Re: ECMAScript 2015 Approved
#65If you've been focusing on another language for a few years, you might not recognize JavaScript anymore. It's pretty awesome now. Here's an example of what it looks like: http://pastebin.com/raw.php?i=yEB4mrty As someone who usually works with C, Scala, and Java -- I'm currently working on a small app built on ec6/7 babel, npm, jspm, system.js, aurelia, gulp, etc. It's been a great experience so far.
I've been away from JS for about 10 months and... cool, but, fuck, that changed quickly. Time to get caught back up to speed. Is ES6 now actually viable, in that it's supported by most users' browsers? If not, are there popular compilers for ES5?
Re: ECMAScript 2015 Approved
#66If you've been focusing on another language for a few years, you might not recognize JavaScript anymore. It's pretty awesome now. Here's an example of what it looks like: http://pastebin.com/raw.php?i=yEB4mrty As someone who usually works with C, Scala, and Java -- I'm currently working on a small app built on ec6/7 babel, npm, jspm, system.js, aurelia, gulp, etc. It's been a great experience so far.
i dislike the import part. without writing the from part first you can't evaluate the import..
Re: ECMAScript 2015 Approved
#67Earlier quoted context omitted.
Every language these days has its "stack" for development. Sure you could sit down with vim and javac and write a "simple app". But once you use Gradle/Maven to handle dependencies and build process. Once you use a nice unit testing framework... Why on earth would you not just fire it up and tune it for every project? Ruby, C# and every other language I've used has this "development stack" mentality, and now when I t…
Compare to go, where you can go a very long way using "go get", "go build", "go run" etc.
Re: ECMAScript 2015 Approved
#68Earlier quoted context omitted.
Once you do it once, its done. Also, tons of scaffolds out there to choose from / tweak. This sort of flexibility is a good thing.
Eh. JS is a very useful language but something has to get us out of this explosion of tools eventually. For the last couple of projects I've worked on, I've had to choose: - The scaffold - The build tool - The actually-good language variant that compiles to JS that a browser can run - The tool that makes the build tool work with the scaffold - The tool that makes the build tool work with the language variant And by t…
Re: ECMAScript 2015 Approved
#69Earlier quoted context omitted.
That's an interesting definition of "had to". If you don't like the complexity all that tooling and boilerplate adds to your project, why not just write your application in vanilla CSS, HTML and JavaScript? It still works fine. Most of the time I'd much rather work with imperfect but standard tools than waste time learning the "hot new stuff" and constantly fix what flighty other developers break or abandon. Framewor…
Because vanilla CSS, HTML and JavaScript sucks? Hence all the tools, frameworks and scaffolds...
Re: ECMAScript 2015 Approved
#70How long before we see widespread browser support?