我已经在我的机器上的Docker中安装了一个本地SonarQube服务器,使用了基于的。它附带了一个Postgres数据库后端以及SonarQube本身。
当我通过Maven运行Java项目分析时,它将分析除我的项目的JS和CSS之外的所有东西。我收到这些警告:
CSS files were not analyzed. Error when running: 'node -v'. Is Node.js available during analysis?
Some JavaScript rules were not executed. Error when running:
我尝试将数据从Drupal页面发送到节点
Drupal代码
function sample_submit($form, &$form_state) { //Function to connect with node and save into Mongo using node
$jsonData = check_plain($form_state['values']['jsonData']);
$request_url = "http://10.20.5.112:3000/save";
$options = array(