What's new in this version: Changes: assert: - Implement assert.match() and assert.doesNotMatch()
events: - Add EventEmitter.on to async iterate over events - Allow monitoring error events
fs: - Allow overriding fs for streams
perf_hooks: - Move perf_hooks out of experimental (legendecas)
repl: - Implement ZSH-like reverse-i-search
tls: - Add PSK (pre-shared key) support
Commits: - (SEMVER-MINOR) assert: implement assert.match() and assert.doesNotMatch() - assert: use for...of - benchmark: use let instead of var in dgram - benchmark: add benchmark on async_hooks enabled http server - benchmark: use let instead of var in crypto - benchmark: replace var with let/const in cluster benchmark - benchmark: include writev in benchmark - benchmark: use let instead of var in child_process - benchmark: add clear connections to secure-pair - benchmark: update manywrites back pressure - bootstrap: use different scripts to setup different configurations - buffer: improve .from() error details - build: don't use -latomic on macOS - build: warn upon --use-largepages config option - build: switch realpath to pwd - build: fixes build for some os versions - build: re-introduce --use-largepages as no-op - deps: V8: backport a4545db - deps: V8: bump v8_embedder_string for 0e21c1e - deps: uvwasi: cherry-pick 75b389c - deps: uvwasi: cherry-pick 64e59d5 - deps: V8: cherry-pick 687d865fe251 - deps: V8: cherry-pick d406bfd64653 - deps: V8: cherry-pick d3a1a5b6c491 - deps,src,test: update to uvwasi 0.0.3 (cjihrig) - dgram: test to add and to drop specific membership - dgram: use for...of - doc: remove extra backtick (cjihrig) - doc: use code markup/markdown in headers - doc: update REPL documentation to instantiate the REPL - doc: improve explanation of package.json "type" field - doc: clarify role of writable.cork() - doc: de-duplicate security release processes - doc: fix createDiffieHellman generator type - doc: update mode type for mkdir() functions - doc: update mode type for process.umask() - doc: update mode type for fs open() functions - doc: update mode type for fchmod() functions - doc: update parameter type for fsPromises.chmod() - doc: improve dns introduction - doc: update parameter type for fs.chmod() - doc: use code markup/markdown in headers in globals documentation - doc: use code markup/markdown in headers in deprecations documentation - doc: use code markup/markdown in headers in addons documentation - doc: allow <code> in header elements - doc: add --inspect-publish-uid man page entry - doc: add --force-context-aware man page entry - doc: add --enable-source-maps man page entry - doc: fix anchors and subtitle in BUILDING.md - doc: standardize usage of hostname vs. host name - doc: add unrepresented flags docs for configure - doc: improve doc net:server.listen (dev-313) - doc: implement minor improvements to BUILDING.md text - doc: avoid using v8::Persistent in addon docs - doc: clarify required flag for extensionless esm - doc: reference worker threads on signal events - doc: update message.url example in http.IncomingMessage - doc,assert: use code markup/markdown in headers - doc,async_hooks: use code markup/markdown in headers - doc,buffer: use code markup/markdown in headers - doc,child_process: use code markup/markdown in headers - doc,cluster: use code markup/markdown in headers - doc,console: use code markup/markdown in headers - doc,crypto: use code markup/markdown in headers - doc,dgram: use code markup/markdown in headers - doc,dns: use code markup/markdown in headers - doc,domain: use code markup/markdown in headers - doc,errors: use code markup/markdown in headers - doc,esm: use code markup/markdown in headers - doc,events: use code markup/markdown in headers - doc,fs: use code markup/markdown in headers - doc,http: use code markup/markdown in headers - doc,http2: use code markup/markdown in headers - doc,https: use code markup/markdown in headers - doc,inspector: use code markup/markdown in headers - doc,lib,src,test: rename WASI CLI flag - doc,module: use code markup/markdown in headers - doc,net: use code markup/markdown in headers - doc,os: use code markup/markdown in headers - doc,path: use code markup/markdown in headers - doc,perf_hooks: use code markup/markdown in headers - doc,process: use code markup/markdown in headers - doc,punycode: use code markup/markdown in headers - doc,querystring: use code markup/markdown in headers - doc,readline: use code markup/markdown in headers - doc,repl: use code markup/markdown in headers - doc,stream: use code markup/markdown in headers - doc,string_decoder: use code markup/markdown in headers - doc,timers: use code markup/markdown in headers - doc,tls: use code markup/markdown in headers - doc,tty: use code markup/markdown in headers - doc,url: use code markup/markdown in headers - doc,util: use code markup/markdown in headers - doc,v8: use code markup/markdown in headers - doc,vm: use code markup/markdown in headers - doc,vm,test: remove _sandbox_ from vm documentation - doc,wasi: use code markup/markdown in headers - doc,worker: use code markup/markdown in headers - doc,zlib: use code markup/markdown in headers - errors: support prepareSourceMap with source-maps - errors: improve ERR_INVALID_ARG_TYPE - esm: better error message for unsupported URL - esm: empty ext from pkg type/main doesnt affect format - (SEMVER-MINOR) events: add EventEmitter.on to async iterate over events - (SEMVER-MINOR) events: allow monitoring error events - fs: use consistent defaults in sync stat functions - (SEMVER-MINOR) fs: allow overriding fs for streams - http: http_outgoing rename var to let and const - http: free listeners on free sockets - http2: set default enableConnectProtocol to 0 - http2: make HTTP2ServerResponse more streams compliant - http2: wait for session socket writable end on close/destroy - http2: wait for session to finish writing before destroy - https: prevent options object from being mutated - lib: move initialization of APIs for changing process state - lib: replace Map global by the primordials - lib: replace use of Error with primordials - lib: replace Set global by the primordials - lib: replace WeakSet global by the primordials - lib: replace WeakMap global by the primordials - lib: replace Set.prototype with SetPrototype primordial - lib: do not catch user errors - lib: replace var with let/const - lib: further simplify assertions in vm/module - lib: improve spelling and grammar in comment - meta: clarify scope of new nodejs.org issue choice - module: unflag resolve self - module: self resolve bug fix and esm ordering - n-api: keep napi_env alive while it has finalizers - perf_hooks: use for...of - (SEMVER-MINOR) perf_hooks: move perf_hooks out of experimental - (SEMVER-MINOR) readline: set null as callback return in case there's no error - (SEMVER-MINOR) readline: small refactoring - repl: use public getCursorPos() - (SEMVER-MINOR) repl: implement reverse search - (SEMVER-MINOR) repl: fix preview of lines that exceed the terminal columns - src: suppress warning in src/node_env_var.cc - src: make large_pages node.cc include conditional - src: enable stack trace printing for V8 check failures - src: prevent hard coding stack trace limit - src: port --bash-completion to C++ - src: make --use-largepages a runtime option - src: list used functions on headers - src: fix compiler warning in env.cc - src,test: use v8::Global instead of v8::Persistent - stream: group all properties using defineProperties - stream: pipeline should use req.abort() to destroy response - stream: reset flowing state if no 'readable' or 'data' listeners - stream: simplify isBuf - test: change buffer offset to accommodate V8 BackingStore - test: use spread object - test: refactor common.expectsError - test: increase coverage for _http_incoming.js - test: log errors in test-http2-propagate-session-destroy-code - test: skip the unsupported test cases for IBM i - test: get lib/wasi.js coverage to 100% - test: cover vm with negative tests - test: unflake async hooks statwatcher test - test: fix common.enoughTestMem - test: fix long lines - test: fix flaky test-http2-client-upload - test: use tmpdir.refresh() in test-esm-windows.js - test: remove obsolete WASI test - timers: fix refresh for expired timers - timers: do less work in insert - (SEMVER-MINOR) tls: add PSK support - tools: remove prefer-common-expectserror lint rule - tools: allow the travis commit message job to fail - tools: fix Raspbian armv7 build - tools: update ESLint to 6.8.0 - tools,src: forbid usage of v8::Persistent - util: improve prototype inspection using inspect() and showHidden - util: add (typed) array length to the default output - util: add colors to debuglog() - wasi: refactor destructuring object on constructor - wasi: fix serdes bugs from snapshot1 migration - wasi: throw on failed uvwasi_init() - zlib: use for...of - zlib: allow writes after readable 'end' to finish
Node.js 13.6.0 (64-bit) 相關參考資料
Node.js (64-bit) Download (2020 Latest) for Windows 10, 8, 7
Node.js 13.6.0 (64-bit) LATEST. Requirements: Windows XP64 / Windows Vista 64 / Windows 7 64 / Windows 8 64 / Windows 10 64.
https://www.filehorse.com
Node.js 12.13.0 (64-bit) Download for Windows 10, 8, 7
Download Node.js 12.13.0 (64-bit) for Windows PC from FileHorse. 100% Safe and Secure ✓ Free ... Node.js 13.6.0 (64-bit). Requirements:.
https://www.filehorse.com
Node.js 13.0.1 (64-bit) Download for Windows 10, 8, 7
Latest Version: Node.js 13.6.0 (64-bit). Requirements: Windows XP64 / Windows Vista 64 / Windows 7 64 / Windows 8 64 / Windows 10 64.
https://www.filehorse.com
Node.js 13.3.0 (64-bit) Download for Windows 10, 8, 7
Latest Version: Node.js 13.6.0 (64-bit). Requirements: Windows XP64 / Windows Vista 64 / Windows 7 64 / Windows 8 64 / Windows 10 64.
https://www.filehorse.com
Node.js 13.5.0 (64-bit) Download for Windows 10, 8, 7
Latest Version: Node.js 13.6.0 (64-bit). Requirements: Windows XP64 / Windows Vista 64 / Windows 7 64 / Windows 8 64 / Windows 10 64.
https://www.filehorse.com
Node.js 13.6.0 (64-bit) Download for Windows Screenshots ...
Node.js 13.6.0 (64-bit) Screenshot 1. Node.js 13.6.0 (64-bit) Screenshot 2. The image below has been reduced in size. Click on it to see the full ...
https://www.filehorse.com
Node.js 13.6.0 (64-bit) Download for Windows ... - FileHorse
Download Node.js 13.6.0 (64-bit). Node.js (64-bit). January, 8th 2020 - 100% Safe ... Node.js 13.5.0 (64-bit). Date released: 18 Dec 2019 (one month ago).
https://www.filehorse.com
下載| Node.js
最新版: 13.6.0 (包含npm 6.13.4). 下載適合您平台 ... macOS 安裝包(.pkg), 64-bit ... Linux 二進位檔案(x64), 64-bit ... 建置在Power LE Systems 上的Linux, 64-bit.
https://nodejs.org
|