Menu
Forums
All threads
Latest threads
New posts
Trending threads
New posts
Search forums
Trending
What's new
New posts
New profile posts
Latest activity
Members
Current visitors
New profile posts
Search profile posts
Upgrades
Log in
Register
What's new
Search
Search
Search titles only
By:
All threads
Latest threads
New posts
Trending threads
New posts
Search forums
Menu
Log in
Register
Navigation
Install the app
Install
More options
Contact us
Close Menu
Forums
Software Development
Programming
Development
Speak-Node (Angular, Node, ES6)
JavaScript is disabled. For a better experience, please enable JavaScript in your browser before proceeding.
You are using an out of date browser. It may not display this or other websites correctly.
You should upgrade or use an
alternative browser
.
Reply to thread
Message
<blockquote data-quote="Jaden" data-source="post: 409988" data-attributes="member: 51705"><p>Node doesn't fully support ES6 (especially not features like import/export due how incompatible it is to their current module system, and unnecessary it would be to compromise for such a simple feature). What you guys use just trans-compiles your ES6 back into ES5 like CoffeeScript does to JavaScript, which imo is completely redundant for any project without a massive codebase (and other considerable factors).</p><p></p><p><strong>More on the subject:</strong></p><p><a href="https://github.com/nodejs/node-eps/blob/master/002-es6-modules.md" target="_blank">https://github.com/nodejs/node-eps/blob/master/002-es6-modules.md</a></p><p></p><p>My whole point is, if your JavaScript is just going to trans-compile into JavaScript, then just write JavaScript.</p><p></p><p>Also, the way you write some of your Node like it'd execute synchronously and compensate for your errors by coming up with a more redundant, complicated approach (callback hell? moving code around?) then what is necessary and could've been avoided easily makes me think you should take a break from ES6 and just write ES5 with minimal objects.</p><p></p><p><a href="https://softwareengineering.stackexchange.com/questions/38884/asynchronous-programming-in-functional-languages" target="_blank">https://softwareengineering.stackexchange.com/questions/38884/asynchronous-programming-in-functional-languages</a></p><p></p><p>p.s. your extensive modularity / file separation in node.js seems a lil redundant, try to be more compact.</p><p>p.s.s think less about how aesthetically pleasing your source code is, and focus more on the execution of the program. In the real world nobody cares about how cute your code looks.</p><p></p><p></p><p></p><p></p><p></p><p></p><p></p><p>p.s.s.s you're writing JavaScript, just come up with a style guide and follow it. Only thing that really matters is consistency.</p></blockquote><p></p>
[QUOTE="Jaden, post: 409988, member: 51705"] Node doesn't fully support ES6 (especially not features like import/export due how incompatible it is to their current module system, and unnecessary it would be to compromise for such a simple feature). What you guys use just trans-compiles your ES6 back into ES5 like CoffeeScript does to JavaScript, which imo is completely redundant for any project without a massive codebase (and other considerable factors). [B]More on the subject:[/B] [URL]https://github.com/nodejs/node-eps/blob/master/002-es6-modules.md[/URL] My whole point is, if your JavaScript is just going to trans-compile into JavaScript, then just write JavaScript. Also, the way you write some of your Node like it'd execute synchronously and compensate for your errors by coming up with a more redundant, complicated approach (callback hell? moving code around?) then what is necessary and could've been avoided easily makes me think you should take a break from ES6 and just write ES5 with minimal objects. [URL]https://softwareengineering.stackexchange.com/questions/38884/asynchronous-programming-in-functional-languages[/URL] p.s. your extensive modularity / file separation in node.js seems a lil redundant, try to be more compact. p.s.s think less about how aesthetically pleasing your source code is, and focus more on the execution of the program. In the real world nobody cares about how cute your code looks. p.s.s.s you're writing JavaScript, just come up with a style guide and follow it. Only thing that really matters is consistency. [/QUOTE]
Insert quotes…
Verification
Post reply
Forums
Software Development
Programming
Development
Speak-Node (Angular, Node, ES6)
Top