README
xbox-node
A node.js wrapper for the Xbox search API
How to use it
var xbox = require("xbox-node");
xbox.search("halo", function(response) {
// do whatever you want with the response.
// the response is in JSON
});
A wrapper to query the xbox search API
<script type="module">
import xboxNode from 'https://cdn.skypack.dev/xbox-node';
</script>
A node.js wrapper for the Xbox search API
var xbox = require("xbox-node");
xbox.search("halo", function(response) {
// do whatever you want with the response.
// the response is in JSON
});