mirror of
https://github.com/leanote/desktop-app.git
synced 2025-10-16 08:01:53 +00:00
25 lines
539 B
JavaScript
25 lines
539 B
JavaScript
//////////////////////////////////////////
|
|
// This example demonstrates what happends
|
|
// when you use the built-in JSON parser.
|
|
//////////////////////////////////////////
|
|
|
|
var fs = require('fs'),
|
|
stream = require('stream'),
|
|
needle = require('./../');
|
|
|
|
var url = 'http://ip.jsontest.com/',
|
|
resp = needle.get(url, { parse: true });
|
|
|
|
resp.on('readable', function(obj) {
|
|
var chunk;
|
|
|
|
while (chunk = this.read()) {
|
|
console.log('root = ', chunk);
|
|
}
|
|
});
|
|
|
|
resp.on('end', function(data) {
|
|
console.log('Done.');
|
|
});
|
|
|