🚀 Socket Launch Week Day 5:Introducing Repository Access Permissions and Custom Roles.Learn more
Sign In

buzzk

Package Overview
Dependencies
Maintainers
1
Versions
74
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

buzzk - npm Package Compare versions

Comparing version
2.3.2
to
2.3.3
+4
-2
lib/vm.js

@@ -10,4 +10,6 @@ const axios = require("axios");

let localPkg = require("../package.json");
let remotePkg = await axios.get("https://raw.githubusercontent.com/Emin-G/buzzk/master/package.json");
if (remotePkg.status != 200) return console.log("[BUZZK] 최신 버전에 대한 정보를 불러오지 못했습니다.");
let remotePkg = await axios.get("https://raw.githubusercontent.com/Emin-G/buzzk/master/package.json").catch((error) => {
return;
});
if (!remotePkg || remotePkg.status != 200) return console.log("[BUZZK] 최신 버전에 대한 정보를 불러오지 못했습니다.");

@@ -14,0 +16,0 @@ remotePkg = remotePkg.data;

{
"name": "buzzk",
"displayName": "BUZZK",
"version": "2.3.2",
"version": "2.3.3",
"description": "뿌지직 (BUZZK) - 치지직(CHZZK) 챗봇을 더욱 쉽게 개발할 수 있도록 돕는 비공식 라이브러리.",

@@ -6,0 +6,0 @@ "main": "lib/index.js",