This repository has been archived by the owner on Apr 22, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 7.3k
API changes between v0.6 and v0.8
AndreasMadsen edited this page Jun 13, 2012
·
66 revisions
When editing this page please be as detailed as possible. Examples are encouraged!
http.Client()
-
path.{exists,existsSync}
was moved tofs.{exists,existsSync}
-
tty.setRawMode(mode)
was moved totty.ReadStream#setRawMode()
(i.e.process.stdin.setRawMode()
)
-
waf
build system -node.js
will be usinggyp
now- If you are a native module author, migrate to
node-gyp
ASAP!
- If you are a native module author, migrate to
-
sys
throws
-
process
-
process.stdin.on('keypress')
will not be emitted by default, as it's an internal API.
-
-
cluster
-
cluster.fork()
no longer return achild_process.fork()
object usecluster.fork().process
to get the object. - the
'death'
event on thecluster
object is renamed to'exit'
. - the
kill()
method is renamed todestroy()
. - the
CLUSTER_WORKER_ID
env is now calledCLUSTER_UNIQUE_ID
, but you should not have used that anyway. - workers now kill themselves when they accidentally lose their connection to the master.
-
-
http
-
http.Server
emits'connect'
event instead of'upgrade'
when the CONNECT method is requested. -
http.ServerResponse
sendsDate:
header by default. You can disable it by settingresponse.sendDate
tofalse
. -
http.ClientRequest
emits'connect'
event instead of'request'
when the CONNECT method is responded.
-
-
child_process
-
arguments
andoptions
arguments ofchild_process.fork()
became an option. - the 'exit' event is now emitted right after the child process exits. It no longer waits for all stdio pipes to be closed.
- the 'close' event was added that has is emitted after the child has exited and all the stdio pipes are closed.
-
-
readline
-
arguments
ofrl.createInterface
became an option asrl.createInterface(options)
but still took an old style as rl.createInterface(input, output, completer)
-
-
url
-
url.parse()
now parses IPv6 addresses.
-
-
fs
-
path.exists()
andpath.existsSync()
has moved tofs.exists()
andfs.existsSync()
. -
fs.symlink
type
argument can now be'junction'
(for Windows only). -
fs.realpath
andfs.lstat
work the same on Windows as on Unix
-
-
console
-
console.timeEnd
now throws when there's no such label
-
-
buffer
-
'utf16le'
encoding.
-
-
child_process
-
silent
option tochild_process.fork()
-stdout
andstderr
won't be shared with parent. -
.disconnect()
when usingchild_process.fork()
this will allow the child to die gracefully. -
stdio
option forchild_process.spawn()
- configuration of child's stdio (file descriptors). -
detached
option forchild_process.spawn()
- make the child a process group leader (see docs) -
child.send()
can now sendnet.Server
andnet.Socket
as second argument.
-
-
cluster
-
'fork'
,'online'
,'listening'
, and'setup'
events. -
Worker
object which is provided fromcluster.workers
(in the master) orcluster.worker
(in the worker). -
env
optional argument tocluster.fork()
. -
cluster.setupMaster()
andcluster.settings
. -
cluster.disconnect()
andworker.disconnect()
. -
worker.uniqueID
what there before was internally known asworkerID
. -
worker.suicide
flag set when worker disconnect or die, indicate if this was an accidental death.
-
-
crypto
-
crypto.getDiffieHellman()
. -
cipher.setAutoPadding()
anddecipher.setAutoPadding()
. -
ciphers
option tocrypto.createCredentials()
.
-
-
domain
-
fs
-
fs.appendFile()
andfs.appendFileSync()
. -
wx
,wx+
,ax
, andax+
modes tofs.open()
andfs.openSync()
.
-
-
http
- callback optional argument to
server.close()
. -
sendDate
property tohttp.ServerResponse
.
- callback optional argument to
-
https
-
ciphers
,rejectUnauthorized
option tohttps.request()
andhttps.get()
.
-
-
net
-
net.connect(options, [connectionListener])
. - callback optional argument to
server.close()
.
-
-
process
-
process.abort()
. -
process.hrtime()
, hi-res timer with up to nanosecond granularity.
-
-
querystring
-
querystring.parse(str, [sep], [eq], [options])
.
-
-
stream
-
'utf16le'
and'ucs2'
encoding tosetEncoding()
.
-
-
tls
-
tls.CLIENT_RENEG_LIMIT
andtls.CLIENT_RENEG_WINDOW
to mitigate session renegotiation attacks -
tls.connect(options, [secureConnectionListener])
. -
ciphers
,rejectUnauthorized
andsocket
options totls.connect()
. -
cleartextStream.getCipher()
was added in the api doc and open to the public.
-
-
zlib
-
dictionary
option.
-