summaryrefslogtreecommitdiff
path: root/doc/node.1
blob: c962b89d127eeb26b8110aa9a65d25dec4e118ef (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
1486
1487
1488
1489
1490
1491
1492
1493
1494
1495
1496
1497
1498
1499
1500
1501
1502
1503
1504
1505
1506
1507
1508
1509
1510
1511
1512
1513
1514
1515
1516
1517
1518
1519
1520
1521
1522
1523
1524
1525
1526
1527
1528
1529
1530
1531
1532
1533
1534
1535
1536
1537
1538
1539
1540
1541
1542
1543
1544
1545
1546
1547
1548
1549
1550
1551
1552
1553
1554
1555
1556
1557
1558
1559
1560
1561
1562
1563
1564
1565
1566
1567
1568
1569
1570
1571
1572
1573
1574
1575
1576
1577
1578
1579
1580
1581
1582
1583
1584
1585
1586
1587
1588
1589
1590
1591
1592
1593
1594
1595
1596
1597
1598
1599
1600
1601
1602
1603
1604
1605
1606
1607
1608
1609
1610
1611
1612
1613
1614
1615
1616
1617
1618
1619
1620
1621
1622
1623
1624
1625
1626
1627
1628
1629
1630
1631
1632
1633
1634
1635
1636
1637
1638
1639
1640
1641
1642
1643
1644
1645
1646
1647
1648
1649
1650
1651
1652
1653
1654
1655
1656
1657
1658
1659
1660
1661
1662
1663
1664
1665
1666
1667
1668
1669
1670
1671
1672
1673
1674
1675
1676
1677
1678
1679
1680
1681
1682
1683
1684
1685
1686
1687
1688
1689
1690
1691
1692
1693
1694
1695
1696
1697
1698
1699
1700
1701
1702
1703
1704
1705
1706
1707
1708
1709
1710
1711
1712
1713
1714
1715
1716
1717
1718
1719
1720
1721
1722
1723
1724
1725
1726
1727
1728
1729
1730
1731
1732
1733
1734
1735
1736
1737
1738
1739
1740
1741
1742
1743
1744
1745
1746
1747
1748
1749
1750
1751
1752
1753
1754
1755
1756
1757
1758
1759
1760
1761
1762
1763
1764
1765
1766
1767
1768
1769
1770
1771
1772
1773
1774
1775
1776
1777
1778
1779
1780
1781
1782
1783
1784
1785
1786
1787
1788
1789
1790
1791
1792
1793
1794
1795
1796
1797
1798
1799
1800
1801
1802
1803
1804
1805
1806
1807
1808
1809
1810
1811
1812
1813
1814
1815
1816
1817
1818
1819
1820
1821
1822
1823
1824
1825
1826
1827
1828
1829
1830
1831
1832
1833
1834
1835
1836
1837
1838
1839
1840
1841
1842
1843
1844
1845
1846
1847
1848
1849
1850
1851
1852
1853
1854
1855
1856
1857
1858
1859
1860
1861
1862
1863
1864
1865
1866
1867
1868
1869
1870
1871
1872
1873
1874
1875
1876
1877
1878
1879
1880
1881
1882
1883
1884
1885
1886
1887
1888
1889
1890
1891
1892
1893
1894
1895
1896
1897
1898
1899
1900
1901
1902
.\"     Title: node
.\"    Author: 
.\" Generator: DocBook XSL Stylesheets v1.73.2 <http://docbook.sf.net/>
.\"      Date: 09/28/2009
.\"    Manual: 
.\"    Source: 
.\"
.TH "NODE" "1" "09/28/2009" "" ""
.\" disable hyphenation
.nh
.\" disable justification (adjust text to left margin only)
.ad l
.SH "NAME"
node - evented I/O for V8 javascript
.SH "SYNOPSIS"
An example of a web server written with Node which responds with "Hello World":
.sp
.sp
.RS 4
.nf
include("/utils\.js");
include("/http\.js");
createServer(function (request, response) {
  response\.sendHeader(200, {"Content\-Type": "text/plain"});
  response\.sendBody("Hello World\en");
  response\.finish();
})\.listen(8000);
puts("Server running at http://127\.0\.0\.1:8000/");
.fi
.RE
To run the server, put the code into a file called example\.js and execute it with the node program
.sp
.sp
.RS 4
.nf
> node example\.js
Server running at http://127\.0\.0\.1:8000/
.fi
.RE
.SH "API"
Node supports 3 string encodings\. UTF\-8 ("utf8"), ASCII ("ascii"), and Binary ("binary")\. "ascii" and "binary" only look at the first 8 bits of the 16bit javascript string characters\. Both are relatively fast\(emuse them if you can\. "utf8" is slower and should be avoided when possible\.
.sp
Unless otherwise noted, functions are all asynchronous and do not block execution\.
.sp
.SS "Helpers"
These objects are available to all programs\.
.PP
node\.cwd()
.RS 4
Returns the current working directory of the process\.
.RE
.PP
__filename
.RS 4
The filename of the script being executed\.
.RE
.PP
require(path), include(path)
.RS 4
See the modules section\.
.RE
.PP
node\.libraryPaths
.RS 4
The search path for absolute path arguments to
require()
and
include()\.
.RE
.SS "The process Object"
process is the equivalent of window in browser\-side javascript\. It is the global scope\. process is an instance of node\.EventEmitter\.
.sp
.TS
allbox tab(:);
ltB ltB ltB.
T{
Event
T}:T{
Parameters
T}:T{
Notes
T}
.T&
lt lt lt.
T{
"exit"
.sp
T}:T{
code
.sp
T}:T{
Made when the process exits\. A listener on this event should not try to perform I/O since the process will forcibly exit in less than microsecond\. However, it is a good hook to perform constant time checks of the module\(cqs state (like for unit tests)\. The parameter code is the integer exit code passed to process\.exit()\.
.sp
T}
.TE
.PP
process\.exit(code=0)
.RS 4
Ends the process with the specified code\. By default it exits with the success code 0\.
.RE
.PP
process\.ARGV
.RS 4
An array containing the command line arguments\.
.RE
.PP
process\.ENV
.RS 4
An object containing the user environment\. See environ(7)\.
.RE
.SS "Utilities"
These function are in "/utils\.js"\. Use require("/utils\.js") to access them\.
.PP
puts(string)
.RS 4
Outputs the
string
and a trailing new\-line to
stdout\.
.RE
.PP
print(string)
.RS 4
Like
puts()
but without the trailing new\-line\.
.RE
.PP
debug(string)
.RS 4
A synchronous output function\. Will block the process and output the string immediately to stdout\.
.RE
.PP
inspect(object)
.RS 4
Return a string representation of the
object\. (For debugging\.)
.RE
.PP
exec(command)
.RS 4
Executes the command as a child process, buffers the output and returns it in a promise callback\.
.sp
.RS 4
.nf
include("/utils\.js");
exec("ls /")\.addCallback(function (stdout, stderr) {
  puts(stdout);
});
.fi
.RE
.sp
.RS 4
\h'-04'\(bu\h'+03'on success: stdout buffer, stderr buffer
.RE
.sp
.RS 4
\h'-04'\(bu\h'+03'on error: exit code, stdout buffer, stderr buffer
.RE
.RE
.SS "Events"
Many objects in Node emit events: a TCP server emits an event each time there is a connection, a child process emits an event when it exits\. All objects which emit events are are instances of node\.EventEmitter\.
.sp
Events are represented by a snakecased string\. Here are some examples: "connection", "receive", "message_begin"\.
.sp
Functions can be then be attached to objects, to be executed when an event is emitted\. These functions are called \fIlisteners\fR\.
.sp
Some asynchronous file operations return an EventEmitter called a \fIpromise\fR\. A promise emits just a single event when the operation is complete\.
.sp
.sp
.it 1 an-trap
.nr an-no-space-flag 1
.nr an-break-flag 1
.br
node.EventEmitter
.RS
All EventEmitters emit the event "newListener" when new listeners are added\.
.sp
.TS
allbox tab(:);
ltB ltB ltB.
T{
Event
T}:T{
Parameters
T}:T{
Notes
T}
.T&
lt lt lt.
T{
"newListener"
.sp
T}:T{
event, listener
.sp
T}:T{
This event is made any time someone adds a new listener\.
.sp
T}
.TE
.PP
emitter\.addListener(event, listener)
.RS 4
Adds a listener to the end of the listeners array for the specified event\.
.sp
.RS 4
.nf
server\.addListener("connection", function (socket) {
  puts("someone connected!");
});
.fi
.RE
.RE
.PP
emitter\.listeners(event)
.RS 4
Returns an array of listeners for the specified event\. This array can be manipulated, e\.g\. to remove listeners\.
.RE
.PP
emitter\.emit(event, arg1, arg2, \&...)
.RS 4
Execute each of the listeners in order with the supplied arguments\.
.RE
.RE
.sp
.it 1 an-trap
.nr an-no-space-flag 1
.nr an-break-flag 1
.br
node.Promise
.RS
node\.Promise inherits from node\.eventEmitter\. A promise emits one of two events: "success" or "error"\. After emitting its event, it will not emit anymore events\.
.sp
.TS
allbox tab(:);
ltB ltB ltB.
T{
Event
T}:T{
Parameters
T}:T{
Notes
T}
.T&
lt lt lt
lt lt lt.
T{
"success"
.sp
T}:T{
(depends)
.sp
T}:T{
.sp
T}
T{
"error"
.sp
T}:T{
(depends)
.sp
T}:T{
.sp
T}
.TE
.PP
promise\.addCallback(listener)
.RS 4
Adds a listener for the
"success"
event\. Returns the same promise object\.
.RE
.PP
promise\.addErrback(listener)
.RS 4
Adds a listener for the
"error"
event\. Returns the same promise object\.
.RE
.PP
promise\.emitSuccess(arg1, arg2, \&...)
.RS 4
If you created the promise (by doing
new node\.Promise()) then call
emitSuccess
to emit the
"success"
event with the given arguments\.
.sp
(promise\.emit("success", arg1, arg2, \&...)
should also work, but doesn\(cqt at the moment due to a bug; use
emitSuccess
instead\.)
.RE
.PP
promise\.emitError(arg1, arg2, \&...)
.RS 4
Emits the
"error"
event\.
.RE
.PP
promise\.wait()
.RS 4
Blocks futher execution until the promise emits a success or error event\. Events setup before the call to
promise\.wait()
was made may still be emitted and executed while
promise\.wait()
is blocking\.
.sp
If there was a single argument to the
"success"
event then it is returned\. If there were multiple arguments to
"success"
then they are returned as an array\.
.sp
If
"error"
was emitted instead,
wait()
throws an error\.
.sp
\fBIMPORTANT\fR
promise\.wait()
is not a true fiber/coroutine\. If any other promises are created and made to wait while the first promise waits, the first promise\(cqs wait will not return until all others return\. The benefit of this is a simple implementation and the event loop does not get blocked\. Disadvantage is the possibility of situations where the promise stack grows infinitely large because promises keep getting created and keep being told to wait()\. Use
promise\.wait()
sparingly\(emprobably best used only during program setup, not during busy server activity\.
.RE
.RE
.SS "Standard I/O"
Standard I/O is handled through a special object node\.stdio\. stdout and stdin are fully non\-blocking (even when piping to files)\. stderr is synchronous\.
.sp
.TS
allbox tab(:);
ltB ltB ltB.
T{
Event
T}:T{
Parameters
T}:T{
Notes
T}
.T&
lt lt lt
lt lt lt.
T{
"data"
.sp
T}:T{
data
.sp
T}:T{
Made when stdin has received a chunk of data\. Depending on the encoding that stdin was opened with, data will be a string\. This event will only be emited after node\.stdio\.open() has been called\.
.sp
T}
T{
"close"
.sp
T}:T{
.sp
T}:T{
Made when stdin has been closed\.
.sp
T}
.TE
.PP
node\.stdio\.open(encoding="utf8")
.RS 4
Open stdin\. The program will not exit until
node\.stdio\.close()
has been called or the
"close"
event has been emitted\.
.RE
.PP
node\.stdio\.write(data)
.RS 4
Write data to stdout\.
.RE
.PP
node\.stdio\.writeError(data)
.RS 4
Write data to stderr\. Synchronous\.
.RE
.PP
node\.stdio\.close()
.RS 4
Close stdin\.
.RE
.SS "Modules"
Node has a simple module loading system\. In Node, files and modules are in one\-to\-one correspondence\. As an example, foo\.js loads the module circle\.js\.
.sp
The contents of foo\.js:
.sp
.sp
.RS 4
.nf
var circle = require("circle\.js");
include("/utils\.js");
puts("The area of a circle of radius 4 is " + circle\.area(4));
.fi
.RE
The contents of circle\.js:
.sp
.sp
.RS 4
.nf
var PI = 3\.14;

exports\.area = function (r) {
  return PI * r * r;
};

exports\.circumference = function (r) {
  return 2 * PI * r;
};
.fi
.RE
The module circle\.js has exported the functions area() and circumference()\. To export an object, add to the special exports object\. (Alternatively, one can use this instead of exports\.) Variables local to the module will be private\. In this example the variable PI is private to circle\.js\. The function puts() comes from the module "/utils\.js"\. Because include("/utils\.js") was called, puts() is in the global namespace\.
.sp
The module path is relative to the file calling require()\. That is, circle\.js must be in the same directory as foo\.js for require() to find it\.
.sp
Like require() the function include() also loads a module\. Instead of returning a namespace object, include() will add the module\(cqs exports into the global namespace\. For example:
.sp
.sp
.RS 4
.nf
include("circle\.js");
include("/utils\.js");
puts("The area of a cirlce of radius 4 is " + area(4));
.fi
.RE
When an absolute path is given to require() or include(), like require("/mjsunit\.js") the module is searched for in the node\.libraryPaths array\. node\.libraryPaths on my system looks like this:
.sp
.sp
.RS 4
.nf
[ "/home/ryan/\.node_libraries"
, "/home/ryan/local/node/lib/node_libraries"
, "/"
]
.fi
.RE
That is, first Node looks for "/home/ryan/\.node_libraries/mjsunit\.js" and then for "/home/ryan/local/node/lib/node_libraries/mjsunit\.js"\. If not found, it finally looks for "/mjsunit\.js" (in the root directory)\.
.sp
node\.libraryPaths can be modified at runtime by simply unshifting new paths on to it and at startup with the NODE_LIBRARY_PATHS environmental variable (which should be a list of paths, colon separated)\.
.sp
Node comes with several libraries which are installed when "make install" is run\. These are currently undocumented, but do look them up in your system\.
.sp
(Functions require_async() and include_async() also exist\.)
.sp
.SS "Timers"
.PP
setTimeout(callback, delay)
.RS 4
To schedule execution of callback after delay milliseconds\. Returns a
timeoutId
for possible use with
clearTimeout()\.
.RE
.PP
clearTimeout(timeoutId)
.RS 4
Prevents said timeout from triggering\.
.RE
.PP
setInterval(callback, delay)
.RS 4
To schedule the repeated execution of callback every
delay
milliseconds\. Returns a
intervalId
for possible use with
clearInterval()\.
.RE
.PP
clearInterval(intervalId)
.RS 4
Stops a interval from triggering\.
.RE
.SS "Child Processes"
Node provides a tridirectional popen(3) facility through the class node\.ChildProcess\. It is possible to stream data through the child\(cqs stdin, stdout, and stderr in a fully non\-blocking way\.
.sp
.sp
.it 1 an-trap
.nr an-no-space-flag 1
.nr an-break-flag 1
.br
node.ChildProcess
.RS
.TS
allbox tab(:);
ltB ltB ltB.
T{
Event
T}:T{
Parameters
T}:T{
Notes
T}
.T&
lt lt lt
lt lt lt
lt lt lt.
T{
"output"
.sp
T}:T{
data
.sp
T}:T{
Each time the child process sends data to its stdout, this event is emitted\. data is a string\. If the child process closes its stdout stream (a common thing to do on exit), this event will be emitted with data === null\.
.sp
T}
T{
"error"
.sp
T}:T{
data
.sp
T}:T{
Identical to the "output" event except for stderr instead of stdout\.
.sp
T}
T{
"exit"
.sp
T}:T{
code
.sp
T}:T{
This event is emitted after the child process ends\. code is the final exit code of the process\. One can be assured that after this event is emitted that the "output" and "error" callbacks will no longer be made\.
.sp
T}
.TE
.PP
node\.createChildProcess(command)
.RS 4
Launches a new process with the given
command\. For example:
.sp
.RS 4
.nf
var ls = node\.createChildProcess("ls \-lh /usr");
ls\.addListener("output", function (data) {
  puts(data);
});
.fi
.RE
.RE
.PP
child\.pid
.RS 4
The PID of the child process\.
.RE
.PP
child\.write(data, encoding="ascii")
.RS 4
Write data to the child process\(cqs
stdin\. The second argument is optional and specifies the encoding: possible values are
"utf8",
"ascii", and
"binary"\.
.RE
.PP
child\.close()
.RS 4
Closes the process\(cqs
stdin
stream\.
.RE
.PP
child\.kill(signal=node\.SIGTERM)
.RS 4
Send a single to the child process\. If no argument is given, the process will be sent
node\.SIGTERM\. The standard POSIX signals are defined under the
node
namespace (node\.SIGINT,
node\.SIGUSR1, \&...)\.
.RE
.RE
.SS "File I/O"
File I/O is provided by simple wrappers around standard POSIX functions\. All POSIX wrappers have a similar form\. They return a promise (node\.Promise)\. Example:
.sp
.sp
.RS 4
.nf
var promise = node\.fs\.unlink("/tmp/hello");
promise\.addCallback(function () {
  puts("successfully deleted /tmp/hello");
});
.fi
.RE
There is no guaranteed ordering to the POSIX wrappers\. The following is very much prone to error
.sp
.sp
.RS 4
.nf
node\.fs\.rename("/tmp/hello", "/tmp/world");
node\.fs\.stat("/tmp/world")\.addCallback(function (stats) {
  puts("stats: " + JSON\.stringify(stats));
});
.fi
.RE
It could be that stat() is executed before the rename()\. The correct way to do this is to chain the promises\.
.sp
.sp
.RS 4
.nf
node\.fs\.rename("/tmp/hello", "/tmp/world")\.addCallback(function () {
  node\.fs\.stat("/tmp/world")\.addCallback(function (stats) {
    puts("stats: " + JSON\.stringify(stats));
  });
});
.fi
.RE
Or use the promise\.wait() functionality:
.sp
.sp
.RS 4
.nf
node\.fs\.rename("/tmp/hello", "/tmp/world")\.wait();
node\.fs\.stat("/tmp/world")\.addCallback(function (stats) {
  puts("stats: " + JSON\.stringify(stats));
});
.fi
.RE
.PP
node\.fs\.rename(path1, path2)
.RS 4
See rename(2)\.
.sp
.RS 4
\h'-04'\(bu\h'+03'on success: no parameters\.
.RE
.sp
.RS 4
\h'-04'\(bu\h'+03'on error: no parameters\.
.RE
.RE
.PP
node\.fs\.stat(path)
.RS 4
See stat(2)\.
.sp
.RS 4
\h'-04'\(bu\h'+03'on success: Returns
node\.fs\.Stats
object\. It looks like this:
{ dev: 2049, ino: 305352, mode: 16877, nlink: 12, uid: 1000, gid: 1000, rdev: 0, size: 4096, blksize: 4096, blocks: 8, atime: "2009\-06\-29T11:11:55Z", mtime: "2009\-06\-29T11:11:40Z", ctime: "2009\-06\-29T11:11:40Z" }
See the
node\.fs\.Stats
section below for more information\.
.RE
.sp
.RS 4
\h'-04'\(bu\h'+03'on error: no parameters\.
.RE
.RE
.PP
node\.fs\.unlink(path)
.RS 4
See unlink(2)
.sp
.RS 4
\h'-04'\(bu\h'+03'on success: no parameters\.
.RE
.sp
.RS 4
\h'-04'\(bu\h'+03'on error: no parameters\.
.RE
.RE
.PP
node\.fs\.rmdir(path)
.RS 4
See rmdir(2)
.sp
.RS 4
\h'-04'\(bu\h'+03'on success: no parameters\.
.RE
.sp
.RS 4
\h'-04'\(bu\h'+03'on error: no parameters\.
.RE
.RE
.PP
node\.fs\.mkdir(path, mode)
.RS 4
See mkdir(2)
.sp
.RS 4
\h'-04'\(bu\h'+03'on success: no parameters\.
.RE
.sp
.RS 4
\h'-04'\(bu\h'+03'on error: no parameters\.
.RE
.RE
.PP
node\.fs\.readdir(path)
.RS 4
Reads the contents of a directory\.
.sp
.RS 4
\h'-04'\(bu\h'+03'on success: One argument, an array containing the names (strings) of the files in the directory (excluding "\." and "\.\.")\.
.RE
.sp
.RS 4
\h'-04'\(bu\h'+03'on error: no parameters\.
.RE
.RE
.PP
node\.fs\.close(fd)
.RS 4
See close(2)
.sp
.RS 4
\h'-04'\(bu\h'+03'on success: no parameters\.
.RE
.sp
.RS 4
\h'-04'\(bu\h'+03'on error: no parameters\.
.RE
.RE
.PP
node\.fs\.open(path, flags, mode)
.RS 4
See open(2)\. The constants like
O_CREAT
are defined at
node\.O_CREAT\.
.sp
.RS 4
\h'-04'\(bu\h'+03'on success:
fd
is given as the parameter\.
.RE
.sp
.RS 4
\h'-04'\(bu\h'+03'on error: no parameters\.
.RE
.RE
.PP
node\.fs\.write(fd, data, position, encoding)
.RS 4
Write data to the file specified by
fd\.
position
refers to the offset from the beginning of the file where this data should be written\. If
position
is
null, the data will be written at the current position\. See pwrite(2)\.
.sp
.RS 4
\h'-04'\(bu\h'+03'on success: returns an integer
written
which specifies how many
\fIbytes\fR
were written\.
.RE
.sp
.RS 4
\h'-04'\(bu\h'+03'on error: no parameters\.
.RE
.RE
.PP
node\.fs\.read(fd, length, position, encoding)
.RS 4
Read data from the file specified by
fd\.
.sp
length
is an integer specifying the number of bytes to read\.
.sp
position
is an integer specifying where to begin reading from in the file\.
.sp
.RS 4
\h'-04'\(bu\h'+03'on success: returns
data, bytes_read, what was read from the file\.
.RE
.sp
.RS 4
\h'-04'\(bu\h'+03'on error: no parameters\.
.RE
.RE
.PP
node\.fs\.cat(filename, encoding="utf8")
.RS 4
Outputs the entire contents of a file\. Example:
.sp
.RS 4
.nf
node\.fs\.cat("/etc/passwd")\.addCallback(function (content) {
  puts(content);
});
.fi
.RE
.sp
.RS 4
\h'-04'\(bu\h'+03'on success: returns
data, what was read from the file\.
.RE
.sp
.RS 4
\h'-04'\(bu\h'+03'on error: no parameters\.
.RE
.RE
.sp
.it 1 an-trap
.nr an-no-space-flag 1
.nr an-break-flag 1
.br
node.fs.Stats
.RS
Objects returned from node\.fs\.stat() are of this type\.
.PP
stats\.isFile(), stats\.isDirectory(), stats\.isBlockDevice(), stats\.isCharacterDevice(), stats\.isSymbolicLink(), stats\.isFIFO(), stats\.isSocket()
.RS 4
\&...
.RE
.RE
.SS "HTTP"
To use the HTTP server and client one must require("/http\.js") or include("/http\.js")\.
.sp
The HTTP interfaces in Node are designed to support many features of the protocol which have been traditionally difficult to use\. In particular, large, possibly chunk\-encoded, messages\. The interface is careful to never buffer entire requests or responses\(emthe user is able to stream data\.
.sp
HTTP message headers are represented by an object like this
.sp
.sp
.RS 4
.nf
{ "Content\-Length": "123"
, "Content\-Type": "text/plain"
, "Connection": "keep\-alive"
, "Accept": "*/*"
}
.fi
.RE
In order to support the full spectrum of possible HTTP applications, Node\(cqs HTTP API is very low\-level\. It deals with connection handling and message parsing only\. It parses a message into headers and body but it does not parse the actual headers or the body\. That means, for example, that Node does not, and will never, provide API to access or manipulate Cookies or multi\-part bodies\. \fIThis is left to the user\.\fR
.sp
.sp
.it 1 an-trap
.nr an-no-space-flag 1
.nr an-break-flag 1
.br
http.Server
.RS
.TS
allbox tab(:);
ltB ltB ltB.
T{
Event
T}:T{
Parameters
T}:T{
Notes
T}
.T&
lt lt lt
lt lt lt
lt lt lt.
T{
"request"
.sp
T}:T{
request, response
.sp
T}:T{
request is an instance of http\.ServerRequest response is an instance of http\.ServerResponse
.sp
T}
T{
"connection"
.sp
T}:T{
connection
.sp
T}:T{
When a new TCP connection is established\. connection is an object of type http\.Connection\. Usually users will not want to access this event\. The connection can also be accessed at request\.connection\.
.sp
T}
T{
"close"
.sp
T}:T{
errorno
.sp
T}:T{
Emitted when the server closes\. errorno is an integer which indicates what, if any, error caused the server to close\. If no error occured errorno will be 0\.
.sp
T}
.TE
.PP
http\.createServer(request_listener, options);
.RS 4
Returns a new web server object\.
.sp
The
options
argument is optional\. The
options
argument accepts the same values as the options argument for
tcp\.Server
does\.
.sp
The
request_listener
is a function which is automatically added to the
"request"
event\.
.RE
.PP
server\.listen(port, hostname)
.RS 4
Begin accepting connections on the specified port and hostname\. If the hostname is omitted, the server will accept connections directed to any address\. This function is synchronous\.
.RE
.PP
server\.close()
.RS 4
Stops the server from accepting new connections\.
.RE
.RE
.sp
.it 1 an-trap
.nr an-no-space-flag 1
.nr an-break-flag 1
.br
http.ServerRequest
.RS
This object is created internally by a HTTP server\(emnot by the user\(emand passed as the first argument to a "request" listener\.
.sp
.TS
allbox tab(:);
ltB ltB ltB.
T{
Event
T}:T{
Parameters
T}:T{
Notes
T}
.T&
lt lt lt
lt lt lt.
T{
"body"
.sp
T}:T{
chunk
.sp
T}:T{
Emitted when a piece of the message body is received\. Example: A chunk of the body is given as the single argument\. The transfer\-encoding has been decoded\. The body chunk is a String\. The body encoding is set with request\.setBodyEncoding()\.
.sp
T}
T{
"complete"
.sp
T}:T{
.sp
T}:T{
Emitted exactly once for each message\. No arguments\. After emitted no other events will be emitted on the request\.
.sp
T}
.TE
.PP
request\.method
.RS 4
The request method as a string\. Read only\. Example:
"GET",
"DELETE"\.
.RE
.PP
request\.uri
.RS 4
Request URI Object\. This contains only the parameters that are present in the actual HTTP request\. That is, if the request is
.sp
.RS 4
.nf
GET /status?name=ryan HTTP/1\.1\er\en
Accept: */*\er\en
\er\en
.fi
.RE
Then
request\.uri
will be
.sp
.RS 4
.nf
{ path: "/status",
  file: "status",
  directory: "/",
  params: { "name" : "ryan" }
}
.fi
.RE
In particular, note that
request\.uri\.protocol
is
undefined\. This is because there was no URI protocol given in the actual HTTP Request\.
.sp
request\.uri\.anchor,
request\.uri\.query,
request\.uri\.file,
request\.uri\.directory,
request\.uri\.path,
request\.uri\.relative,
request\.uri\.port,
request\.uri\.host,
request\.uri\.password,
request\.uri\.user,
request\.uri\.authority,
request\.uri\.protocol,
request\.uri\.params,
request\.uri\.toString(),
request\.uri\.source
.RE
.PP
request\.headers
.RS 4
Read only\.
.RE
.PP
request\.httpVersion
.RS 4
The HTTP protocol version as a string\. Read only\. Examples:
"1\.1",
"1\.0"
.RE
.PP
request\.setBodyEncoding(encoding)
.RS 4
Set the encoding for the request body\. Either
"utf8"
or
"binary"\. Defaults to
"binary"\.
.RE
.PP
request\.pause()
.RS 4
Pauses request from emitting events\. Useful to throttle back an upload\.
.RE
.PP
request\.resume()
.RS 4
Resumes a paused request\.
.RE
.PP
request\.connection
.RS 4
The
http\.Connection
object\.
.RE
.RE
.sp
.it 1 an-trap
.nr an-no-space-flag 1
.nr an-break-flag 1
.br
http.ServerResponse
.RS
This object is created internally by a HTTP server\(emnot by the user\. It is passed as the second parameter to the "request" event\.
.PP
response\.sendHeader(statusCode, headers)
.RS 4
Sends a response header to the request\. The status code is a 3\-digit HTTP status code, like
404\. The second argument,
headers
are the response headers\.
.sp
Example:
.sp
.RS 4
.nf
var body = "hello world";
response\.sendHeader(200, {
  "Content\-Length": body\.length,
  "Content\-Type": "text/plain"
});
.fi
.RE
This method must only be called once on a message and it must be called before
response\.finish()
is called\.
.RE
.PP
response\.sendBody(chunk, encoding="ascii")
.RS 4
This method must be called after
sendHeader
was called\. It sends a chunk of the response body\. This method may be called multiple times to provide successive parts of the body\.
.sp
If
chunk
is a string, the second parameter specifies how to encode it into a byte stream\. By default the
encoding
is
"ascii"\.
.sp
Note: This is the raw HTTP body and has nothing to do with higher\-level multi\-part body encodings that may be used\.
.sp
The first time
sendBody
is called, it will send the buffered header information and the first body to the client\. The second time
sendBody
is called, Node assumes you\(cqre going to be streaming data, and sends that seperately\. That is, the response is buffered up to the first chunk of body\.
.RE
.PP
response\.finish()
.RS 4
This method signals to the server that all of the response headers and body has been sent; that server should consider this message complete\. The method,
response\.finish(), MUST be called on each response\.
.RE
.RE
.sp
.it 1 an-trap
.nr an-no-space-flag 1
.nr an-break-flag 1
.br
http.Client
.RS
An HTTP client is constructed with a server address as its argument, the returned handle is then used to issue one or more requests\. Depending on the server connected to, the client might pipeline the requests or reestablish the connection after each connection\. \fICurrently the implementation does not pipeline requests\.\fR
.sp
Example of connecting to google\.com
.sp
.sp
.RS 4
.nf
var google = http\.createClient(80, "google\.com");
var request = google\.get("/");
request\.finish(function (response) {
  puts("STATUS: " + response\.statusCode);
  puts("HEADERS: " + JSON\.stringify(response\.headers));
  response\.setBodyEncoding("utf8");
  response\.addListener("body", function (chunk) {
    puts("BODY: " + chunk);
  });
});
.fi
.RE
.PP
http\.createClient(port, host)
.RS 4
Constructs a new HTTP client\.
port
and
host
refer to the server to be connected to\. A connection is not established until a request is issued\.
.RE
.PP
client\.get(path, request_headers), client\.head(path, request_headers), client\.post(path, request_headers), client\.del(path, request_headers), client\.put(path, request_headers)
.RS 4
Issues a request; if necessary establishes connection\. Returns a
http\.ClientRequest
instance\.
.sp
request_headers
is optional\. Additional request headers might be added internally by Node\. Returns a
ClientRequest
object\.
.sp
Do remember to include the
Content\-Length
header if you plan on sending a body\. If you plan on streaming the body, perhaps set
Transfer\-Encoding: chunked\.
.sp
.it 1 an-trap
.nr an-no-space-flag 1
.nr an-break-flag 1
.br
Note
the request is not complete\. This method only sends the header of the request\. One needs to call
request\.finish()
to finalize the request and retrieve the response\. (This sounds convoluted but it provides a chance for the user to stream a body to the server with
request\.sendBody()\.)
.RE
.RE
.sp
.it 1 an-trap
.nr an-no-space-flag 1
.nr an-break-flag 1
.br
http.ClientRequest
.RS
This object is created internally and returned from the request methods of a http\.Client\. It represents an \fIin\-progress\fR request whose header has already been sent\.
.sp
.TS
allbox tab(:);
ltB ltB ltB.
T{
Event
T}:T{
Parameters
T}:T{
Notes
T}
.T&
lt lt lt.
T{
"response"
.sp
T}:T{
response
.sp
T}:T{
Emitted when a response is received to this request\. Typically the user will set a listener to this via the request\.finish() method\. This event is emitted only once\. The response argument will be an instance of http\.ClientResponse\.
.sp
T}
.TE
.PP
request\.sendBody(chunk, encoding="ascii")
.RS 4
Sends a chunk of the body\. By calling this method many times, the user can stream a request body to a server\(emin that case it is suggested to use the
["Transfer\-Encoding", "chunked"]
header line when creating the request\.
.sp
The
chunk
argument should be an array of integers or a string\.
.sp
The
encoding
argument is optional and only applies when
chunk
is a string\. The encoding argument should be either
"utf8"
or
"ascii"\. By default the body uses ASCII encoding, as it is faster\.
.RE
.PP
request\.finish(responseListener)
.RS 4
Finishes sending the request\. If any parts of the body are unsent, it will flush them to the socket\. If the request is chunked, this will send the terminating
"0\er\en\er\en"\.
.sp
The parameter
responseListener
is a callback which will be executed when the response headers have been received\. The
responseListener
callback is executed with one argument which is an instance of
http\.ClientResponse\.
.sp
In the
responseListener
callback, one can add more listeners to the response, in particular listening for the
"body"
event\. Note that the
responseListener
is called before any part of the body is receieved, so there is no need to worry about racing to catch the first part of the body\. As long as a listener for
"body"
is added during the
responseListener
callback, the entire body will be caught\.
.sp
.RS 4
.nf
// Good
request\.finish(function (response) {
  response\.addListener("body", function (chunk) {
    puts("BODY: " + chunk);
  });
});

// Bad \- misses all or part of the body
request\.finish(function (response) {
  setTimeout(function () {
    response\.addListener("body", function (chunk) {
      puts("BODY: " + chunk);
    });
  }, 10);
});
.fi
.RE
.RE
.RE
.sp
.it 1 an-trap
.nr an-no-space-flag 1
.nr an-break-flag 1
.br
http.ClientResponse
.RS
This object is created internally and passed to the "response" event\.
.sp
.TS
allbox tab(:);
ltB ltB ltB.
T{
Event
T}:T{
Parameters
T}:T{
Notes
T}
.T&
lt lt lt
lt lt lt.
T{
"body"
.sp
T}:T{
chunk
.sp
T}:T{
Emitted when a piece of the message body is received\. Example: A chunk of the body is given as the single argument\. The transfer\-encoding has been decoded\. The body chunk a String\. The body encoding is set with response\.setBodyEncoding()\.
.sp
T}
T{
"complete"
.sp
T}:T{
.sp
T}:T{
Emitted exactly once for each message\. No arguments\. After emitted no other events will be emitted on the response\.
.sp
T}
.TE
.PP
response\.statusCode
.RS 4
The 3\-digit HTTP response status code\. E\.G\.
404\.
.RE
.PP
response\.httpVersion
.RS 4
The HTTP version of the connected\-to server\. Probably either
"1\.1"
or
"1\.0"\.
.RE
.PP
response\.headers
.RS 4
The response headers\.
.RE
.PP
response\.setBodyEncoding(encoding)
.RS 4
Set the encoding for the response body\. Either
"utf8"
or
"binary"\. Defaults to
"binary"\.
.RE
.PP
response\.pause()
.RS 4
Pauses response from emitting events\. Useful to throttle back a download\.
.RE
.PP
response\.resume()
.RS 4
Resumes a paused response\.
.RE
.PP
response\.client
.RS 4
A reference to the
http\.Client
that this response belongs to\.
.RE
.RE
.SS "TCP"
To use the TCP server and client one must require("/tcp\.js") or include("/tcp\.js")\.
.sp
.sp
.it 1 an-trap
.nr an-no-space-flag 1
.nr an-break-flag 1
.br
tcp.Server
.RS
Here is an example of a echo server which listens for connections on port 7000
.sp
.sp
.RS 4
.nf
include("/tcp\.js");
var server = createServer(function (socket) {
  socket\.setEncoding("utf8");
  socket\.addListener("connect", function () {
    socket\.send("hello\er\en");
  });
  socket\.addListener("receive", function (data) {
    socket\.send(data);
  });
  socket\.addListener("eof", function () {
    socket\.send("goodbye\er\en");
    socket\.close();
  });
});
server\.listen(7000, "localhost");
.fi
.RE
.TS
allbox tab(:);
ltB ltB ltB.
T{
Event
T}:T{
Parameters
T}:T{
Notes
T}
.T&
lt lt lt
lt lt lt.
T{
"connection"
.sp
T}:T{
connection
.sp
T}:T{
Emitted when a new connection is made\. connection is an instance of tcp\.Connection\.
.sp
T}
T{
"close"
.sp
T}:T{
errorno
.sp
T}:T{
Emitted when the server closes\. errorno is an integer which indicates what, if any, error caused the server to close\. If no error occurred errorno will be 0\.
.sp
T}
.TE
.PP
tcp\.createServer(connection_listener);
.RS 4
Creates a new TCP server\.
.sp
The
connection_listener
argument is automatically set as a listener for the
"connection"
event\.
.RE
.PP
server\.listen(port, host=null, backlog=128)
.RS 4
Tells the server to listen for TCP connections to
port
and
host\.
.sp
host
is optional\. If
host
is not specified the server will accept client connections on any network address\.
.sp
The third argument,
backlog, is also optional and defaults to 128\. The
backlog
argument defines the maximum length to which the queue of pending connections for the server may grow\.
.sp
This function is synchronous\.
.RE
.PP
server\.close()
.RS 4
Stops the server from accepting new connections\. This function is asynchronous, the server is finally closed when the server emits a
"close"
event\.
.RE
.RE
.sp
.it 1 an-trap
.nr an-no-space-flag 1
.nr an-break-flag 1
.br
tcp.Connection
.RS
This object is used as a TCP client and also as a server\-side socket for tcp\.Server\.
.sp
.TS
allbox tab(:);
ltB ltB ltB.
T{
Event
T}:T{
Parameters
T}:T{
Notes
T}
.T&
lt lt lt
lt lt lt
lt lt lt
lt lt lt
lt lt lt.
T{
"connect"
.sp
T}:T{
.sp
T}:T{
Call once the connection is established after a call to createConnection() or connect()\.
.sp
T}
T{
"receive"
.sp
T}:T{
data
.sp
T}:T{
Called when data is received on the connection\. data will be a string\. Encoding of data is set by connection\.setEncoding()\.
.sp
T}
T{
"eof"
.sp
T}:T{
.sp
T}:T{
Called when the other end of the connection sends a FIN packet\. After this is emitted the readyState will be "writeOnly"\. One should probably just call connection\.close() when this event is emitted\.
.sp
T}
T{
"timeout"
.sp
T}:T{
.sp
T}:T{
Emitted if the connection times out from inactivity\. The "close" event will be emitted immediately following this event\.
.sp
T}
T{
"close"
.sp
T}:T{
had_error
.sp
T}:T{
Emitted once the connection is fully closed\. The argument had_error is a boolean which says if the connection was closed due to a transmission error\. (TODO: access error codes\.)
.sp
T}
.TE
.PP
tcp\.createConnection(port, host="127\.0\.0\.1")
.RS 4
Creates a new connection object and opens a connection to the specified
port
and
host\. If the second parameter is omitted, localhost is assumed\.
.sp
When the connection is established the
"connect"
event will be emitted\.
.RE
.PP
connection\.connect(port, host="127\.0\.0\.1")
.RS 4
Opens a connection to the specified
port
and
host\.
createConnection()
also opens a connection; normally this method is not needed\. Use this only if a connection is closed and you want to reuse the object to connect to another server\.
.sp
This function is asynchronous\. When the
"connect"
event is emitted the connection is established\. If there is a problem connecting, the
"connect"
event will not be emitted, the
"close"
event will be emitted with
had_error == true\.
.RE
.PP
connection\.remoteAddress
.RS 4
The string representation of the remote IP address\. For example,
"74\.125\.127\.100"
or
"2001:4860:a005::68"\.
.sp
This member is only present in server\-side connections\.
.RE
.PP
connection\.readyState
.RS 4
Either
"closed",
"open",
"opening",
"readOnly", or
"writeOnly"\.
.RE
.PP
connection\.setEncoding(encoding)
.RS 4
Sets the encoding (either
"ascii",
"utf8", or
"binary") for data that is received\.
.RE
.PP
connection\.send(data, encoding="ascii")
.RS 4
Sends data on the connection\. The second parameter specifies the encoding in the case of a string\(emit defaults to ASCII because encoding to UTF8 is rather slow\.
.RE
.PP
connection\.close()
.RS 4
Half\-closes the connection\. I\.E\., it sends a FIN packet\. It is possible the server will still send some data\. After calling this
readyState
will be
"readOnly"\.
.RE
.PP
connection\.forceClose()
.RS 4
Ensures that no more I/O activity happens on this socket\. Only necessary in case of errors (parse error or so)\.
.RE
.PP
connection\.readPause()
.RS 4
Pauses the reading of data\. That is,
"receive"
events will not be emitted\. Useful to throttle back an upload\.
.RE
.PP
connection\.readResume()
.RS 4
Resumes reading if reading was paused by
readPause()\.
.RE
.PP
connection\.setTimeout(timeout)
.RS 4
Sets the connection to timeout after
timeout
milliseconds of inactivity on the connection\. By default all
tcp\.Connection
objects have a timeout of 60 seconds (60000 ms)\.
.sp
If
timeout
is 0, then the idle timeout is disabled\.
.RE
.PP
connection\.setNoDelay(noDelay=true)
.RS 4
Disables the Nagle algorithm\. By default TCP connections use the Nagle algorithm, they buffer data before sending it off\. Setting
noDelay
will immediately fire off data each time
connection\.send()
is called\.
.RE
.RE
.SS "DNS"
Here is an example of which resolves "www\.google\.com" then reverse resolves the IP addresses which are returned\.
.sp
.sp
.RS 4
.nf
var resolution = node\.dns\.resolve4("www\.google\.com");

resolution\.addCallback(function (addresses, ttl, cname) {
  puts("addresses: " + JSON\.stringify(addresses));
  puts("ttl: " + JSON\.stringify(ttl));
  puts("cname: " + JSON\.stringify(cname));

  for (var i = 0; i < addresses\.length; i++) {
    var a = addresses[i];
    var reversing = node\.dns\.reverse(a);
    reversing\.addCallback( function (domains, ttl, cname) {
      puts("reverse for " + a + ": " + JSON\.stringify(domains));
    });
    reversing\.addErrback( function (code, msg) {
      puts("reverse for " + a + " failed: " + msg);
    });
  }
});

resolution\.addErrback(function (code, msg) {
  puts("error: " + msg);
});
.fi
.RE
.PP
node\.dns\.resolve4(domain)
.RS 4
Resolves a domain (e\.g\.
"google\.com") into an array of IPv4 addresses (e\.g\.
["74\.125\.79\.104", "74\.125\.79\.105", "74\.125\.79\.106"])\. This function returns a promise\.
.sp
.RS 4
\h'-04'\(bu\h'+03'on success: returns
addresses, ttl, cname\.
ttl
(time\-to\-live) is an integer specifying the number of seconds this result is valid for\.
cname
is the canonical name for the query\.
.RE
.sp
.RS 4
\h'-04'\(bu\h'+03'on error: returns
code, msg\.
code
is one of the error codes listed below and
msg
is a string describing the error in English\.
.RE
.RE
.PP
node\.dns\.resolve6(domain)
.RS 4
The same as
node\.dns\.resolve4()
except for IPv6 queries (an
AAAA
query)\.
.RE
.PP
node\.dns\.reverse(ip)
.RS 4
Reverse resolves an ip address to an array of domain names\.
.sp
.RS 4
\h'-04'\(bu\h'+03'on success: returns
domains, ttl, cname\.
ttl
(time\-to\-live) is an integer specifying the number of seconds this result is valid for\.
cname
is the canonical name for the query\.
domains
is an array of domains\.
.RE
.sp
.RS 4
\h'-04'\(bu\h'+03'on error: returns
code, msg\.
code
is one of the error codes listed below and
msg
is a string describing the error in English\.
.RE
.RE
Each DNS query can return an error code\.
.sp
.sp
.RS 4
\h'-04'\(bu\h'+03'
node\.dns\.TEMPFAIL: timeout, SERVFAIL or similar\.
.RE
.sp
.RS 4
\h'-04'\(bu\h'+03'
node\.dns\.PROTOCOL: got garbled reply\.
.RE
.sp
.RS 4
\h'-04'\(bu\h'+03'
node\.dns\.NXDOMAIN: domain does not exists\.
.RE
.sp
.RS 4
\h'-04'\(bu\h'+03'
node\.dns\.NODATA: domain exists but no data of reqd type\.
.RE
.sp
.RS 4
\h'-04'\(bu\h'+03'
node\.dns\.NOMEM: out of memory while processing\.
.RE
.sp
.RS 4
\h'-04'\(bu\h'+03'
node\.dns\.BADQUERY: the query is malformed\.
.RE
.SH "REPL"
A Read\-Eval\-Print\-Loop is available both as a standalone program and easily includable in other programs\.
.sp
The standalone REPL is called node\-repl and is installed at $PREFIX/bin/node\-repl\. It\(cqs recommended to use it with the program rlwrap for a better user interface\. I set
.sp
.sp
.RS 4
.nf
alias node\-repl="rlwrap node\-repl"
.fi
.RE
in my zsh configuration\.
.sp
Inside the REPL, Control+D will exit\. The special variable _ (underscore) contains the result of the last expression\.
.sp
The library is called /repl\.js and it can be used like this:
.sp
.sp
.RS 4
.nf
include("/utils\.js");
include("/tcp\.js");
nconnections = 0;
createServer(function (c) {
  error("Connection!");
  nconnections += 1;
  c\.close();
})\.listen(5000);
require("/repl\.js")\.start("simple tcp server> ");
.fi
.RE
.SH "EXTENSION API"
External modules can be compiled and dynamically linked into Node\. Node is more or less glue between several C and C++ libraries:
.sp
.sp
.RS 4
\h'-04'\(bu\h'+03'V8 Javascript, a C++ library\. Used for interfacing with Javascript: creating objects, calling functions, etc\. Documented mostly in the
v8\.h
header file (deps/v8/include/v8\.h
in the Node source tree)\.
.RE
.sp
.RS 4
\h'-04'\(bu\h'+03'libev, C event loop library\. Anytime one needs to wait for a file descriptor to become readable, wait for a timer, or wait for a signal to received one will need to interface with libev\. That is, if you perform any I/O, libev will need to be used\. Node uses the
EV_DEFAULT
event loop\. Documentation can be found
here\.
.RE
.sp
.RS 4
\h'-04'\(bu\h'+03'libeio, C thread pool library\. Used to execute blocking POSIX system calls asynchronously\. Mostly wrappers already exist for such calls, in
src/file\.cc
so you will probably not need to use it\. If you do need it, look at the header file
deps/libeio/eio\.h\.
.RE
.sp
.RS 4
\h'-04'\(bu\h'+03'Internal Node libraries\. Most importantly is the
node::EventEmitter
class which you will likely want to derive from\.
.RE
.sp
.RS 4
\h'-04'\(bu\h'+03'Others\. Look in
deps/
for what else is available\.
.RE
Node statically compiles all its dependencies into the executable\. When compiling your module, you don\(cqt need to worry about linking to any of these libraries\.
.sp
Here is a sample Makefile taken from node_postgres:
.sp
.sp
.RS 4
.nf
binding\.node: binding\.o Makefile
        gcc \-shared \-o binding\.node  binding\.o \e
                \-L`pg_config \-\-libdir` \-lpq

binding\.o: binding\.cc Makefile
        gcc `node \-\-cflags` \-I`pg_config \-\-includedir` \e
                binding\.cc \-c \-o binding\.o

clean:
        rm \-f binding\.o binding\.node
\.PHONY: clean
.fi
.RE
As you can see, the only thing your module needs to know about Node is the CFLAGS that node was compiled with which are gotten from node \-\-cflags If you want to make a debug build, then use node_g \-\-cflags\. (node_g is the debug build of node, which can built with configure \-\-debug; make; make install\.)
.sp
Node extension modules are dynamically linked libraries with a \.node extension\. Node opens this file and looks for a function called init() which must be of the form:
.sp
.sp
.RS 4
.nf
extern "C" void init (Handle<Object> target)
.fi
.RE
In this function you can create new javascript objects and attach them to target\. Here is a very simple module:
.sp
.sp
.RS 4
.nf
extern "C" void
init (Handle<Object> target)
{
  HandleScope scope;
  target\->Set(String::New("hello"), String::New("World"));
}
.fi
.RE
Further documentation will come soon\. For now see the source code of node_postgres\.
.sp
.SH "NOTES"
.IP " 1." 4
here
.RS 4
\%http:/cvs.schmorp.de/libev/ev.html
.RE
.IP " 2." 4
node_postgres
.RS 4
\%http://github.com/ry/node_postgres
.RE