0

我正在使用 Mac OS X,在终端上我做了:

$ sudo npm install node-siege 

安装围攻。我可以看到在我的文件夹中创建并安装了 node-siege 文件夹。但是当我用围攻来运行任何东西时,它让我-bash: siege.config: command not found 不太清楚为什么。siege.config,或任何带有 siege 的命令。它给了我找不到的命令。

编辑我现在安装了 Siege,它在我的文件夹中,我可以运行它。

我有一个 siege.test.js

  var siege = require('../../siege')

    // Assuming i supposed to change the script below to the directory path then + the file to run??
// For example  var siege = require(Localhost/testfolder+'/testthisfile.js')

//siege(__dirname + '/app.js')
siege()
  .host('localhost')
  .on(3000)
  .concurrent(30)
  .for(10000).times
  .get('/')
  .post('/')
  .attack()
4

2 回答 2

0

node-siege只是一个名为siege.

为了node-siege在您的 node.js 脚本中使用,您需要先安装siege命令行工具。你如何做到这一点取决于你的操作系统,但在 *nix 上,它通常可以通过你最喜欢的包管理器获得。

于 2015-05-11T14:40:05.523 回答
0

您必须使用包管理器安装 Siege(例如brew install Siege:)

然后创建一个init文件siege.config

为了查看基准(并发、交易率和失败的交易),您可以设置 -r 代表次数,这样它只会运行一次围攻。

siege -c100 -r1 http://localhost:3000/

https://linux.die.net/man/1/siege

于 2019-07-19T10:26:41.790 回答