UNPKG

metusbase

Version:

This package is an NPM module that makes using JSON and Mongo fast, secure and easy. Developer: mete52

13 lines (12 loc) 475 B
import axios from "axios"; export function checker(version) { axios .get("https://api.metehanstudio.com/api/npm/metusbase") .then((response) => { if (response.data?.version !== version) { console.error(`Please use our current version ${response.data?.version}`); console.warn("\x1b[33m%s\x1b[0m", "Please download the current version of the module: npm install metusbase"); process.exit(0); } }); }