如何使用nodejs coffeescript从API检索数据

时间:2016-04-02 11:19:38

标签: node.js express coffeescript

  

我有一个API,我想要检索API数据。我正在使用nodeJS和   coffeescript。如何使用coffeescript编写nodejs脚本。这是   我的API,并希望从该API检索数据。请帮助我。

     

http://apiprod.yourstory.com/v1/site/YOURSTORY/articles/

1 个答案:

答案 0 :(得分:1)

请尝试使用npm安装请求包并使用以下代码:

var request = require('request');
//Lets try to make a HTTP GET request to modulus.io's website.
request('http://www.modulus.io', function (error, response, body) {
if (!error && response.statusCode == 200) {
    console.log(body); // Show the HTML for the Modulus homepage.
}
});

以下链接更详细地解释:

http://blog.modulus.io/node.js-tutorial-how-to-use-request-module