1 Star 0 Fork 0

樊世超/unused-npm-names

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
index.js 690 Bytes
一键复制 编辑 原始数据 按行查看 历史
pengjy 提交于 2018-09-07 11:43 . update error catch
const axios = require('axios');
const chalk = require('chalk');
function search(pkgs = []) {
if (!Array.isArray(pkgs)) {
throw 'Param should be an array.';
}
console.log();
pkgs.forEach((pkg) => {
axios.get(`https://registry.npmjs.org/${pkg}`)
.then((res) => {
console.log(`${chalk.cyan(pkg)}: ${chalk.red('Used ❌')}`);
})
.catch((err) => {
if (err.stack && /Request failed with status code 404/.test(err.stack)) {
console.log(`${chalk.cyan(pkg)}: ${chalk.green('Unused ✅')}`);
} else {
console.log(`${chalk.cyan(pkg)}: ${chalk.gray('Unknown 🤔')}`)
}
});
});
}
module.exports = search;
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/fanshichao/unused-npm-names.git
[email protected]:fanshichao/unused-npm-names.git
fanshichao
unused-npm-names
unused-npm-names
master

搜索帮助