- [
44260806a6
] - Partial revert "tls: keep track of stream that is closed" (Trevor Norris) #11947 - [
ab3fdf531f
] - deps: cherry-pick ca0f9573 from V8 upstream (Ali Ijaz Sheikh) #11940 - [
07b92a3c0b
] - doc: add supported platforms list for v4.x (Michael Dawson) #12091 - [
ba91c41478
] - module: fix loading from global folders on Windows (Richard Lau) #9283 - [
b5b78b12b8
] - src: add fcntl.h include to node.cc (Bartosz Sosnowski) #12540 - [
eb393f9ae1
] - src
- [
8e440115ec
] - lib: add back lib/module.js redirection (Joyee Cheung) #19177 - [
45c477c2e6
] - lib: restructure cjs and esm loaders (Joyee Cheung) #19177 - [
83ebaf08d9
] - test: remove NODE_DEBUG in global module loading test (Joyee Cheung) #19177 - [
ebdcf91dcc
] - src: put bootstrappers in lib/internal/bootstrap/ (Joyee Cheung) #19177 - [
ff7a116ba3
] - src: move internal loaders out of bootstrap_node.js (Joyee Cheung) #19112 - [
5e90fc6a85
] - fs:
- [
a710167c79
] - lib: rename kMaxCallbacksUntilQueueIsShortened (JungMinu) #11473 - [
1d86a9f5eb
] - test: fix over-dependence on native promise impl (Ali Ijaz Sheikh) #11437 - [
539e83a820
] - src: remove usage of deprecated debug API (Yang Guo) #11437 - [
d1549bf8d9
] - lib: add constant kMaxCallbacksUntilQueueIsShortened (Daniel Bevenius) #11199 - [
e416967244
] - test: cases to querystring related to empty string (Daijiro Wachi) #11329 - [
18599fc3d7
] - do
- [
b56e851c48
] - net: refactor overloaded argument handling (Joyee Cheung) #11667 - [
a7eba9c71c
] - meta: move WORKING_GROUPS.md to CTC repo (James M Snell) #11555 - [
e5b530cb62
] - build: fix llvm version detection in freebsd-10 (Shigeki Ohtsu) #11668 - [
fdb4a6c796
] - test: skip the test with proper TAP message (Sakthipriyan Vairamani (thefourtheye)) #11584 - [
ed6d7412a7
] - deps: fix CLEAR_HASH macro to be usable as a single statement (Sam Roberts) #11616 - [[
3b27b8da9d
](https://github.com/nodejs/node/c
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
const readline = require('readline'); | |
readline.emitKeypressEvents(process.stdin); | |
process.stdin.setRawMode(true); | |
process.stdin.on('keypress', (str, key) => { | |
if (key.ctrl && key.name === 'c') { | |
process.exit(); | |
} | |
else if(key.name === 'space') { | |
console.log('YOU DID IT') | |
} |
I hereby claim:
- I am mylesborins on github.
- I am mylesborins (https://keybase.io/mylesborins) on keybase.
- I have a public key whose fingerprint is C4F0 DFFF 4E8C 1A82 3640 9D08 E73B C641 CC11 F4C8
To claim this, I am signing this object:
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
npm WARN deprecated [email protected]: Jade has been renamed to pug, please install the latest version of pug instead of jade | |
npm WARN deprecated [email protected]: Please update to minimatch 3.0.2 or higher to avoid a RegExp DoS issue | |
npm WARN deprecated [email protected]: graceful-fs v3.0.0 and before will fail on node releases >= v7.0. Please update to graceful-fs@^4.0.0 as soon as possible. Use 'npm ls graceful-fs' to find it in the tree. | |
[email protected] /Users/thealphanerd/code/UglifyJS2 | |
├── [email protected] | |
├── [email protected] | |
├── [email protected] | |
├── [email protected] | |
├── [email protected] | |
├── [email protected] |
- [
f2ef850f11
] - (SEMVER-MINOR) fs: support Uint8Array input to methods (Anna Henningsen) #10382 - [
2d23562588
] - (SEMVER-MINOR) src/doc: improve man page and --help (Roman Reiss) #10157 - [
0b44384561
] - (SEMVER-MINOR) tls: allow obvious key/passphrase combinations (Sam Roberts) #10294 - [
5d14602181
] - (SEMVER-MINOR) cluster: return worker reference from disconnect() (Sean Villars) #10019 - [
6b86ecc007
] - (SEMVER-MINOR) crypto: returnthis
in setAuthTag/setAAD (Kirill Fomichev) #9398 - [
- [
66a9f013ac
] - events: optimize arrayClone by copying forward (Benedikt Meurer) #10571 - [
dcc20f12a6
] - doc: clarify the statement in vm.createContext() (AnnaMag) #10519 - [
78e8aa81c9
] - test: refactor test-stream-pipe-after-end (Rich Trott) #10483 - [
785975d922
] - deps: ICU 58.2 bump download URL (Steven R. Loomis) #10206 - [
bce0013dd8
] - deps: ICU 58.2 bump (Steven R. Loomis) #10206 - [
80e798e324
] - crypto: use CHECK_NE instead of ABORT or abo
- [
3cbb553df8
] - tools: disallow trailing whitespace for markdown (Sam Roberts) #9676 - [
13c4f44e97
] - test: add new.target add-on regression test (Ben Noordhuis) #9689 - [
515b1f3972
] - build: default to ppc64 on AIX (Gibson Fahnestock) #9645 - [
d6dc2e8d44
] - test: refactor test-async-wrap-* (Rich Trott) #9663 - [
31dac410a4
] - src: fix method name, output format (Josh Gavant) #9627 - [
55cb280265
] - doc: fix typo in BUILDING.md (monkick) [#9569](https:/