Hi,
Latest request versions require Node.js v4.0.0 and up.
TMOS v13.0 currently runs:
[root@bip_A:Active:Standalone] config # node --version
v0.12.15
This dependency breaks your code on BIG-IP v12.x and v13.0 because icontrol tries to install the latest 2.x request version:
"dependencies": {
"request": "2.x"
}
Please consider updating package.json or the documentation to manually install a previous version that supports Node.js v0.12.15:
npm install request@v2.76.0 --save
Thanks!