Refactor: directory structure (#31)

* config: update version
* refactor: move source codes to lib directory, Close #30
* refactor: move test code
This commit is contained in:
Shohei Ueda
2019-09-18 07:32:17 +09:00
committed by GitHub
parent 25a3456032
commit 4d54b90c0e
5 changed files with 3 additions and 3 deletions

21
lib/get-latest-version.js Normal file
View File

@@ -0,0 +1,21 @@
const XMLHttpRequest = require("xmlhttprequest").XMLHttpRequest;
function getLatestVersion() {
return new Promise((resolve, reject) => {
const xhr = new XMLHttpRequest();
const url = "https://formulae.brew.sh/api/formula/hugo.json";
xhr.open("GET", url);
xhr.send();
xhr.onreadystatechange = function() {
if (xhr.readyState === 4 && xhr.status === 200) {
const result = JSON.parse(xhr.responseText);
const latestVersion = result.versions.stable;
resolve(latestVersion);
} else if (xhr.readyState === 4 && xhr.status !== 200) {
reject(`ERROR: got status ${xhr.status} of ${url}`);
}
};
});
}
module.exports = getLatestVersion;