- [
f82439b6a0
] - (SEMVER-MINOR) http: add rawPacket in err ofclientError
event (XadillaX) #17672 - [
4b0c8759d3
] - (SEMVER-MINOR) stream: add flow and buffer properties to streams (Calvin Metcalf) #12855 - [
7008719fb6
] - (SEMVER-MINOR) events: remove reaches into _events internals (Anatoli Papirovski) #17440 - [
584e74d8cc
] - (SEMVER-MINOR) zlib: add ArrayBuffer support (Jem Bezooyen) #16042 - [
23967b2713
] - (SEMVER-MINOR) console: make dirxml an alias for console.log (Benjamin Zaslavsky) [#17152](https://github.com/nodejs/node
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#include <stdio.h> | |
#include <dirent.h> | |
int main (int argc, char *argv[ ]) | |
{ | |
DIR *dp; | |
struct dirent *dirp; | |
if (argc != 2) { | |
fprintf(stderr, "usage: ls directory_name\n"); |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#include <stdio.h> | |
#include <dirent.h> | |
int main (int argc, char *argv[ ]) | |
{ | |
DIR *dp; | |
struct dirent *dirp; | |
if (argc != 2) { | |
fprintf(stderr, "usage: ls directory_name\n"); |
- [
aa08cf1e7a
] - doc: fix typo in addons.md (Rich Trott) #21137 - [
1c8f760b16
] - zlib: removed extra util require (ErnestoSalazar) #21069 - [
5ebdce277e
] - https: removed extra _http_server require (ErnestoSalazar) #21069 - [
d0943bcb69
] - test: move benchmark-dgram to sequential (Anatoli Papirovski) #21144 - [
fc3fd60413
] - doc: add offboarding doc (Rich Trott) #21103 - [
327ce2dc92
] - inspector: code cleanup (Eugene Ostroukhov) [#21070](https://gi
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
(node:33490) ExperimentalWarning: The http2 module is an experimental API. | |
Http2Session client (13) session created | |
Http2Session client (13) i/o stream consumed | |
Http2Session client (13) submitting 0 settings | |
Http2Session client (13) settings submitted | |
Http2Priority: parent: 0, weight: 16, exclusive: 0 | |
Http2Session client (13) request submitted | |
Http2Session client (13) submitting request | |
Http2Stream 1 (16) [Http2Session client (13)] writable side shutdown | |
Http2Session client (13) request submitted, new stream id 1 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
let output = '' | |
const files = [ | |
'addons/callback-scope/test-resolve-async.js', | |
'addons/make-callback-recurse/test.js', | |
'addons-napi/test_promise/test.js', | |
'async-hooks/test-promise.chain-promise-before-init-hooks.js', | |
'async-hook/test-promise.js', | |
'async-hooks/test-promise.promise-before-init-hooks.js', | |
'known_issues/test-inspector-cluster-port-clash.js', |
- [
e6dfd59be0
] - lib: pass internalBinding more implicitly (Anna Henningsen) #16218 - [
1f8d527e94
] - (SEMVER-MAJOR) path: deprecate internal _makeLong, replace (James M Snell) #14956 - [
9d7574eef5
] - (SEMVER-MAJOR) module: deprecate Module._debug (Jackson Tian) #13948 - [
5f22375922
] - (SEMVER-MAJOR) src: add support to pass flags to dlopen (Ezequiel Garcia) #12794 - [
a517466aa7
] - (SEMVER-MAJOR) module: mark DEP0019 as EOL and remove compat code (Roman Reiss) #3384
- [
e6484c2c11
] - build: restore js2c direct dependency on config.gypi (Refael Ackermann) #23355 - [
cd69e1b6c3
] - src: fix ToObject() usage in node_http_parser.cc (cjihrig) #23314 - [
5228ec4410
] - src: fix ToObject() usage in exceptions.cc (cjihrig) #23314 - [
c4aa0331c1
] - build: make configure script verbose by default (Michaël Zasso) #23408 - [
a65bb42551
] - net: use connect() instead of connect.call() (Jackson Tian) #23289 - [
62a2c81214
] - doc:
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
'use strict'; | |
const common = require('../common'); | |
const assert = require('assert'); | |
const path = require('path'); | |
const spawn = require('child_process').spawn; | |
const childPath = path.join(common.fixturesDir, | |
'parent-process-nonpersistent.js'); | |
let persistentPid = -1; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
From b80aedf4c19b6d74d6ad303f74d157dc9ddd17e0 Mon Sep 17 00:00:00 2001 | |
From: Sam Roberts <[email protected]> | |
Date: Fri, 14 Jul 2017 11:05:00 -0700 | |
Subject: [PATCH] net: support passing undefined to listen() | |
For consistency with 4.x and 8.x. | |
This commit also contains a forward port of | |
https://github.com/nodejs/node/pull/14232 to confirm that 4.x and 6.x | |
behave identically with respect to the port argument. |