Ryan Dahl
663deb3828
delete[] instead of delete for arrays.
15 years ago
Ryan Dahl
8549994c4b
Add readFile to '/file.js'
Thanks Hagen.
15 years ago
Ryan Dahl
a02ca7a590
Add writeFile() to /file.js
Initial patch by Tim Caswell.
15 years ago
Ryan Dahl
07792afe0a
Remove "raw" encoding. Rename "raws" to "binary".
Deprecation warnings have been added to help the conversion to this new API.
15 years ago
Ryan Dahl
2db7d6755e
Move node-repl to bin/node-repl
15 years ago
Ryan Dahl
cd70d4a9c0
Add "/file.js" buffered disk I/O object.
This is similar to the class node.File which was removed in
82cb1b5acb
.
Needs documentation.
15 years ago
Ryan Dahl
4b8f503fac
Move mjsunit.js to system module directory.
15 years ago
Ryan Dahl
7ddf1f569a
Improve error message for requiring system modules.
15 years ago
Ryan Dahl
949f24305b
Add node.error(); p() outputs to stderr.
15 years ago
Ryan Dahl
3311122ccb
Throw ret value from wait() only if it's there.
15 years ago
Ryan Dahl
389c80aece
return error from cat_promise in node.fs.cat
15 years ago
Ryan Dahl
c8b143bf30
Absolute path names for require() refer to node.libraryPaths
15 years ago
Ryan Dahl
5ddc4f5d0c
bump version
15 years ago
Ryan Dahl
ab530bb211
Upgrade v8 to 1.3.11
15 years ago
Ryan Dahl
605b7e9763
Add node.installPrefix
15 years ago
Ryan Dahl
6f31a3763d
Add more explanation to docs for request.finish().
15 years ago
Ryan Dahl
b54fad9b3f
Bugfix: node.fs.write() was stack allocating buffer.
Since the buffer is passed to the thread pool it needs to be heap allocated.
Thanks to Jon Crosby and Tim Caswell for debugging this.
15 years ago
Jon Crosby
e57c16bc2d
Add failing spec for node.fs.write
15 years ago
Ryan Dahl
9db2e5f375
Default to utf8 encoding for node.fs.cat()
15 years ago
Ryan Dahl
16185ae57e
update doc for node.fs.write()
15 years ago
Ryan Dahl
083d150bc4
Add node.exec()
15 years ago
Ryan Dahl
fdc136df69
Add documentation for promise.emitSuccess and emitError
15 years ago
Ryan Dahl
7fa694a3b6
fix typo on website
15 years ago
Ryan Dahl
5fdf9bbaa9
Remove unused variable in http.cc
15 years ago
Ryan Dahl
4f98e2deb3
Fix buffering logic for HTTP outgoing messages.
Was sending two packets instead of one for some short messages, and even 3,
for short chunked-encoded messages. Also use the more general Encode()
function for receiving HTTP bodies.
Gives ~6% improvement on "hello world" web server benchmarks.
15 years ago
Ryan Dahl
f389f923b8
Remove erroneously placed EV_DEFAULT_UC_
15 years ago
Ryan Dahl
0d1ec5fdbe
API: node.fs.read() takes a normal encoding parameter.
Removes node.UTF8, node.RAW, node.ASCII enum versions of the encodings.
node.fs.read() now supports "raws" encoding.
15 years ago
Ryan Dahl
d1a13bdd35
Fix default encoding for outgoing HTTP messages
Was causing send() to throw argument errors because arrays of ints would get
paired with the "raws" encoding. The bug was introduced in 8eb1294
.
15 years ago
Ryan Dahl
ef300d19cb
Bugfix: ReportException shouldn't forget the top frame.
15 years ago
Ryan Dahl
8eb1294f87
Bugfix: sendBody wasn't setting encoding
15 years ago
Ryan Dahl
69e8a01c58
Fix broken asciidoc section
15 years ago
Jeff Smick
bc6f381c98
Use "platform.architecture()" to find the proper architecture.
In Snow Leopard "platform.machine()" returns "i386" while
"platform.architecture()" returns ('64bit',''). Using information from both
we can determine the proper architecture
This reverts commit ea29e137b5
re-enabling the
64bit build on Macintosh.
15 years ago
Ryan
227638bac1
Lint
15 years ago
Ryan
dbe116ddfe
API: Change arguments of emit(), emitSuccess(), emitError()
Instead of
myemitter.emit("event", [arg1, arg2, arg3]);
the API is now
myemitter.emit("event", arg1, arg2, arg3);
This change saves the creation of an extra array object for each event.
The implementation is also slightly more simple.
15 years ago
Ryan
97355f3613
spell check api.txt
15 years ago
Ryan
12bb0d46ce
bump version
15 years ago
Ryan
5629fd574a
Add doc note about 'raws' encoding
15 years ago
Ryan
d03c7e38e9
Just add the gernerated doc files. Make life easier.
15 years ago
Ryan
d851bf9a66
Revert "Add xsl files to doc directory so people can build docs easily"
This reverts commit 412b4636c8
.
15 years ago
Ryan
412b4636c8
Add xsl files to doc directory so people can build docs easily
15 years ago
Ryan
8c41adb628
Add node-repl
15 years ago
Ryan
1910c113cc
Add '--' to seperate v8 args from program args
15 years ago
Ryan
d6c9d31cb5
cpplint.py node.cc and node.h
15 years ago
Ryan
241950c1df
Add isDirectory(), isFile(), isSocket(), ... methods to stats object.
Thanks to Felix Geisendörfer for the initial patch.
15 years ago
Ryan
3e4fc9f966
Add 'extern char **environ' so that the new ENV code compiles.
Problem appeared in dc39e82024
.
15 years ago
Ryan
dc39e82024
Add access to user environment via ENV
15 years ago
Ryan
68dda0a7d8
Man page generation.
15 years ago
Ryan
8e5d4f9a69
Remove debug agent. It shouldn't have been commited!
Appeared accidentally in 6dd850aa
.
15 years ago
Ryan
2337630746
Move arg parsing to beginning of main()
For faster "./node -v"
15 years ago
Ryan
d7e220cee1
Add a few fflush(stderr) calls to track down missing stacktraces.
15 years ago