I'm having an issue where when I run the script directly node ./bin/www everything works fine, I'm able to connect to the docker instance I have set up but when I run npm start or npm run start I get the following error:
> node ./bin/www
Cannot find MQ C library.
Has the C client been installed?
Have you run setmqenv?
/Users/..../node_modules/ibmmq/lib/mqi.js:413
throw err;
^
Error: Dynamic Linking Error: dlopen(/opt/mqm/lib/libmqm_r.dylib, 2): image not found
sample code package.json ...
...
I'm having an issue where when I run the script directly
node ./bin/www
everything works fine, I'm able to connect to the docker instance I have set up but when I runnpm start
ornpm run start
I get the following error: