Update README
This commit is contained in:
parent
91f39f4652
commit
648e170fa8
2 changed files with 5 additions and 2 deletions
|
@ -144,6 +144,8 @@ Example: examples/low-level.js
|
|||
return chunk.length;
|
||||
});
|
||||
|
||||
// curl.close() should be called in event 'error' and 'end' if the curl won't use any more.
|
||||
// or the resource will not release until V8 garbage mark sweep.
|
||||
curl.on('error', function(e) {
|
||||
p("error: " + e.message)
|
||||
curl.close();
|
||||
|
@ -151,8 +153,8 @@ Example: examples/low-level.js
|
|||
|
||||
|
||||
curl.on('end', function() {
|
||||
p('done.')
|
||||
p('code: ' + curl.getinfo('RESPONSE_CODE'));
|
||||
p('done.')
|
||||
curl.close();
|
||||
});
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue