首页 > 其他分享 >YApi-v1.9.2部署失败(Accessing non-existent property 'count' of module exports inside circular

YApi-v1.9.2部署失败(Accessing non-existent property 'count' of module exports inside circular

时间:2022-08-24 18:12:08浏览次数:82  
标签:count node non Accessing YApi exports module circular

部署YApi时,出现报错信息:Accessing non-existent property 'count' of module exports inside circular dependency

GitHub上未找到解决方案,网上发现其他同学也遇到了类似的问题。

产生这个的原因是node的版本太高了

解决的办法很简单,卸载最新版的node v14,重新安装稳定版的node v12,这个问题就解决了。

参考文章:

《搭建Yapi可视化接口平台》:https://www.cnblogs.com/melodyjerry/p/13714382.html

标签:count,node,non,Accessing,YApi,exports,module,circular
From: https://www.cnblogs.com/myibm/p/16621131.html

相关文章

  • ERROR: Could not find a version that satisfies the requirement Crypto.Cipher (fr
    换成这个pipinstallpycryptodomePS:之前手动下载Crypto.zip解压到D:\python\Python39\Lib\site-packages\Crypto目录,不知道跟这有没有关系,要是改其他名会报错!OK!!......
  • [Oracle] LeetCode 696 Count Binary Substrings
    Givenabinarystrings,returnthenumberofnon-emptysubstringsthathavethesamenumberof0'sand1's,andallthe0'sandallthe1'sinthesesubstring......
  • 乘风破浪,遇见最佳跨平台跨终端框架.Net Core/.Net生态 - 微软和Canonical联手打造.Net
    微软和Canonical宣布在Ubuntu22.04主机和容器中提供本地.NET服务https://ubuntu.com//blog/install-dotnet-on-ubuntu.NET开发者现在可以通过一个"aptinstall"命令......
  • CountDownLatch demo演示裁判和选手赛跑
    #CountDownLatchdemo演示裁判和选手赛跑packagecom.example.core.mydemo;importjava.util.concurrent.CountDownLatch;importjava.util.concurrent.ExecutorServ......
  • CountDownLatch demo演示数据分片多线程处理
    #CountDownLatchdemo演示数据分片多线程处理packagecom.example.core.mydemo;importorg.springframework.scheduling.concurrent.ThreadPoolTaskExecutor;import......
  • LeetCode 811. Subdomain Visit Count
    原题链接在这里:https://leetcode.com/problems/subdomain-visit-count/题目:Awebsitedomain "discuss.leetcode.com" consistsofvarioussubdomains.Atthetople......
  • global 与 nonlocal
    第一,两者的功能不同。global关键字修饰变量后标识该变量是全局变量,对该变量进行修改就是修改全局变量,而nonlocal关键字修饰变量后标识该变量是上一级函数中的局部变量,如果......
  • P3605 [USACO17JAN]Promotion Counting P 题解
    solution考虑权值线段树合并:首先离散化,然后对于一个节点,我们将它的所有子树合并上来,并统计所有能力指数的个数(权值线段树基本操作),查询时只需查询\(p_i+1\simn\)的和即......
  • CountDownLatch
    CountDownLatchCountDownLatch是一种通用的同步工具CountDownLatch内部的实现主要是依靠AQS的共享模式。当一个线程把CountDownLatch初始化了一个count之后,其他的线程......
  • NoneType
    None是内置常量,是NoneType的唯一真值。None经常用于表示缺少值。python中None的典型用法:定义函数时的默认参数占位符>>>deffunc(x,y=None):pass如果函......