xbox-node
文件大小: unknow
源码售价: 5 个金币 积分规则     积分充值
资源说明:A node.js wrapper for the Xbox search API
xbox-node
=========

A node.js wrapper for the Xbox search API

## How to use it

The xbox-node module is super easy to use.

To request the module, type:

```js

var xbox = require("xbox-node");

```

To search for XBOX ONE TITLES:

```js

var xbox = require("xbox-node");

xbox.searchOne("halo", function(response) {

  // do whatever you want with the response.
  // the response is in JSON

});

```

And searching for XBOX 360 TITLES:


```js

xbox.search360("halo", function(response) {

  // do whatever you want with the response.
  // the response is in JSON

});

```

本源码包内暂不包含可直接显示的源代码文件,请下载源码包。