Great news! Node.js could greatly benefit from more reimplementations of its native modules. I had implemented the `fs.readdir` module in C and saw some good performance gains (it was a hackish experiment I did some time ago and can't remember numbers).
The `http` module is said to be outperformed by `eshttp` [1] by a factor of 2 times, which is written in pure JavaScript.
There is also `node-lwan` [2], an experiment in using `lwan` [3] in place of the built in `http` module. Since its the most performant web server in JSON serialization, according to techempower.com benchmarks [4], performance gains are to be expected.
I'm still mind blown every single day about the Node community—for me it's the fastest evolving dev ecosystem which is at the same time high performant and robust.
async/await is not in the ECMA spec. It a proposal, like Object.observe(which was discarded) And remember one thing, Nodejs maintainers DO NOT control V8, the javascript engine powering it, they are entirely dependent on what the V8 team at Google does.
So you'll have to wait a long time and even so there is absolutely no guarantee async/away will ever make it to the spec. Same deal for decorators, developers shouldn't depend on non ECMA features. Even worse, the final proposal might be totally different from the current Babel/whatever implementation.
async/await isn't part of any standard yet. It's a stage 3 proposal at this time, which means it may not even land in ES 2016: https://github.com/tc39/ecma262
The last thing we want is native support for pre-standard features. As long as it's not in a spec (or draft at least), it's sci-fi.
> child_process: spawn() and spawnSync() now support a 'shell' option to allow for optional execution of the given command inside a shell. If set to true, cmd.exe will be used on Windows and /bin/sh elsewhere. A path to a custom shell can also be passed to override these defaults. On Windows, this option allows .bat. and .cmd files to be executed with spawn() and spawnSync(). (Colin Ihrig) #4598
Does this mean that it can now open a real shell (like iTerm) and execute a script ? or I misunderstood ?
Sadly not. When calling spawn[Sync]() in prior versions the command would be executed directly as a child of the node process. If you wanted to use any features like piping, automatic environment variable interpolation or backgrounding etc; you had to manually wrap your command with a system shell like bash(sh).
This addition when set to true, will do the wrapping for you in a cross-platform manor.
[+] [-] TheAceOfHearts|10 years ago|reply
[0] https://github.com/nodejs/node/pull/5123
[+] [-] kenOfYugen|10 years ago|reply
The `http` module is said to be outperformed by `eshttp` [1] by a factor of 2 times, which is written in pure JavaScript.
There is also `node-lwan` [2], an experiment in using `lwan` [3] in place of the built in `http` module. Since its the most performant web server in JSON serialization, according to techempower.com benchmarks [4], performance gains are to be expected.
[1] https://github.com/iefserge/eshttp [2] https://github.com/raadad/node-lwan [3] http://lwan.ws/ [4] https://www.techempower.com/benchmarks/#section=data-r12&hw=...
[+] [-] btd|10 years ago|reply
[+] [-] glossyscr|10 years ago|reply
I'm still mind blown every single day about the Node community—for me it's the fastest evolving dev ecosystem which is at the same time high performant and robust.
[+] [-] joshmanders|10 years ago|reply
[+] [-] romanovcode|10 years ago|reply
[+] [-] alfonsodev|10 years ago|reply
npm install --save babel-core babel-loader babel-polyfill babel-preset-es2015 babel-preset-stage-0
Adding this to entry point file
and having a .babelrc with these presets: Then you can transpile with babel-cli ( sudo npm install -g babel-cli if you don't have it yet) Make sure you have npm version 3, or it become too slow to initialise.as @vdaniuk mention Chackra supports it, but did anyone tried this https://github.com/nodejs/node-chakracore?
Is there any other way to get async/await today ?
[+] [-] aikah|10 years ago|reply
So you'll have to wait a long time and even so there is absolutely no guarantee async/away will ever make it to the spec. Same deal for decorators, developers shouldn't depend on non ECMA features. Even worse, the final proposal might be totally different from the current Babel/whatever implementation.
V8 doesn't even implement 100% of ES6, yet.
[+] [-] secoif|10 years ago|reply
[+] [-] ChrisAntaki|10 years ago|reply
[+] [-] pluma|10 years ago|reply
The last thing we want is native support for pre-standard features. As long as it's not in a spec (or draft at least), it's sci-fi.
Besides, node doesn't implement language features, V8 does. Here's the relevant issue: https://bugs.chromium.org/p/v8/issues/detail?id=4483
[+] [-] cwmma|10 years ago|reply
[+] [-] oweiler|10 years ago|reply
[+] [-] hakcermani|10 years ago|reply
[+] [-] audessuscest|10 years ago|reply
Does this mean that it can now open a real shell (like iTerm) and execute a script ? or I misunderstood ?
[+] [-] jamescun|10 years ago|reply
This addition when set to true, will do the wrapping for you in a cross-platform manor.
[+] [-] joshmanders|10 years ago|reply
iTerm is not a shell. bash, zsh, fish, etc are shells. iTerm is a terminal program that opens a shell.
[+] [-] s_kilk|10 years ago|reply
child_process.exec('open -a Terminal.app')
I'm pretty sure you can pass a script arg to the application too, but I haven't done it in a while.