NG icon indicating copy to clipboard operation
NG copied to clipboard

Next Generation JavaScript IO Platform

Results 22 NG issues
Sort by recently updated
recently updated
newest added

Essentially supporting https://github.com/node-ffi/node-ffi directly (`require('ffi')`)

I think NG should cover some APIs that belong to body standards. List of proposed APIs: - [Canvas](http://www.w3.org/TR/2015/CR-2dcontext-20150702/) - [Fetch](https://fetch.spec.whatwg.org/) - [File](http://www.w3.org/TR/FileAPI) - [IndexedDB](http://www.w3.org/TR/2015/REC-IndexedDB-20150108/) - [Streams](https://streams.spec.whatwg.org) - [WebRTC](http://www.w3.org/TR/2015/WD-webrtc-20150210/) - [WebSocket](http://www.w3.org/TR/websockets/)...

Lets find a long-term replacement for gyp. Backlog here: https://github.com/nodejs/node/issues/133

One of our more vibrant threads is about adding HTTP2 to core. https://github.com/iojs/io.js/issues/4 In the TC meeting today there was broad support for adding _something_ to core but no clear...

As discussed on https://github.com/nodejs/io.js/issues/1716 and https://github.com/nodejs/io.js/pull/1727 the discussion has some aspects like. - Should we implement the same API on browser? - Should we put the API on core? My...

Posted on nodejs/node#4584 I am coming from java and maven world and after using npm and node in multi-module project, i think a lot of improvement could be done with...

I recently wrote something about how modules in node currently work (using NPM) and @Fishrock123 pointed me here, since the node repo probably wasn't the right place to post something...

With ES2015 destructuring we could get something like this: ``` javascript let {err, res} = syncOperation(); // or let [err, res] = syncOperation(); let {err, res} = await asyncOperation(); //...

Part of the point of the NG brainstorming is to see how we can make backward-incompatible changes to core. One early proposal was to use ES6 modules as a "switch":...

Recently npm changed to install dependencies in a 'flatter' way. https://docs.npmjs.com/how-npm-works/npm3 This is just my naive proposal but I'd like to suggest 2 things: 1) Install modules with their version...