You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository has been archived by the owner on Oct 16, 2021. It is now read-only.
I'm trying to find tools that helps diagnose "apparent loops" in node on z/OS. Specifically, I'd like to be able to see the javascript stack, either from a running node process on z/OS, or from a system dump of the address space (the latter would be a "node" equivalent of the java tool jdmpview)
I think that the npm package node-report sounds like a useful tool, as it means I could issue "kill -USR2 " to force node to write out javascript information.
when I try to use "-r node-report" on my node command line, this is the result:
Error: Cannot find module 'node-report'
if I try to install node-report using "npm install node-report", the "make" fails (see below):
RS25:ctds/tep~/repos/omegcc/web-tep-cap/ctds/tep> npm i node-report
make: Entering directory '/proj/kbm/pdpenn/repos/omegcc/web-tep-cap/ctds/tep/node_modules/node-report/build'
CXX(target) Release/obj.target/api/src/node_report.o
make: njsc++: Command not found
make: *** [api.target.mk:114: Release/obj.target/api/src/node_report.o] Error 127
make: Leaving directory '/proj/kbm/pdpenn/repos/omegcc/web-tep-cap/ctds/tep/node_modules/node-report/build'
gyp ERR! build error
gyp ERR! stack Error: make failed with exit code: 2
gyp ERR! stack at ChildProcess.onExit (/proj/mvd/node/installs/node-v12.14.1-os390-s390x/lib/node_modules/npm/node_modules/node-gyp/lib/build.js:194:23)
gyp ERR! stack at ChildProcess.emit (events.js:223:5)
gyp ERR! stack at Process.ChildProcess._handle.onexit (internal/child_process.js:272:12)
gyp ERR! System OS/390 27.00
gyp ERR! command "/proj/mvd/node/installs/node-v12.14.1-os390-s390x/bin/node" "/proj/mvd/node/installs/node-v12.14.1-os390-s390x/lib/node_modules/npm/node_modules/node-gyp/bin/node-gyp.js" "rebuild"
gyp ERR! cwd /proj/kbm/pdpenn/repos/omegcc/web-tep-cap/ctds/tep/node_modules/node-report
gyp ERR! node -v v12.14.1
gyp ERR! node-gyp -v v5.0.5
gyp ERR! not ok
npm WARN optional SKIPPING OPTIONAL DEPENDENCY: [email protected] (node_modules/fsevents):
npm WARN notsup SKIPPING OPTIONAL DEPENDENCY: Unsupported platform for [email protected]: wanted {"os":"darwin","arch":"any"} (current: {"os":"os390","arch":"s390x"})
npm ERR! code ELIFECYCLE
npm ERR! errno 1
npm ERR! [email protected] install: node-gyp rebuild
npm ERR! Exit status 1
npm ERR!
npm ERR! Failed at the [email protected] install script.
npm ERR! This is probably not a problem with npm. There is likely additional logging output above.
npm ERR! A complete log of this run can be found in:
npm ERR! /proj/kbm/pdpenn/.npm/_logs/2020-10-02T17_33_04_737Z-debug.log
The text was updated successfully, but these errors were encountered:
Sign up for freeto subscribe to this conversation on GitHub.
Already have an account?
Sign in.
Problem:
Error: Cannot find module 'node-report'
RS25:ctds/tep~/repos/omegcc/web-tep-cap/ctds/tep> npm i node-report
make: Entering directory '/proj/kbm/pdpenn/repos/omegcc/web-tep-cap/ctds/tep/node_modules/node-report/build'
CXX(target) Release/obj.target/api/src/node_report.o
make: njsc++: Command not found
make: *** [api.target.mk:114: Release/obj.target/api/src/node_report.o] Error 127
make: Leaving directory '/proj/kbm/pdpenn/repos/omegcc/web-tep-cap/ctds/tep/node_modules/node-report/build'
gyp ERR! build error
gyp ERR! stack Error:
make
failed with exit code: 2gyp ERR! stack at ChildProcess.onExit (/proj/mvd/node/installs/node-v12.14.1-os390-s390x/lib/node_modules/npm/node_modules/node-gyp/lib/build.js:194:23)
gyp ERR! stack at ChildProcess.emit (events.js:223:5)
gyp ERR! stack at Process.ChildProcess._handle.onexit (internal/child_process.js:272:12)
gyp ERR! System OS/390 27.00
gyp ERR! command "/proj/mvd/node/installs/node-v12.14.1-os390-s390x/bin/node" "/proj/mvd/node/installs/node-v12.14.1-os390-s390x/lib/node_modules/npm/node_modules/node-gyp/bin/node-gyp.js" "rebuild"
gyp ERR! cwd /proj/kbm/pdpenn/repos/omegcc/web-tep-cap/ctds/tep/node_modules/node-report
gyp ERR! node -v v12.14.1
gyp ERR! node-gyp -v v5.0.5
gyp ERR! not ok
npm WARN optional SKIPPING OPTIONAL DEPENDENCY: [email protected] (node_modules/fsevents):
npm WARN notsup SKIPPING OPTIONAL DEPENDENCY: Unsupported platform for [email protected]: wanted {"os":"darwin","arch":"any"} (current: {"os":"os390","arch":"s390x"})
npm ERR! code ELIFECYCLE
npm ERR! errno 1
npm ERR! [email protected] install:
node-gyp rebuild
npm ERR! Exit status 1
npm ERR!
npm ERR! Failed at the [email protected] install script.
npm ERR! This is probably not a problem with npm. There is likely additional logging output above.
npm ERR! A complete log of this run can be found in:
npm ERR! /proj/kbm/pdpenn/.npm/_logs/2020-10-02T17_33_04_737Z-debug.log
The text was updated successfully, but these errors were encountered: