cicsdev / cics-nodejs-invoke

Sample Node.js application that uses the invoke API from the ibm-cics-api module to call COBOL programs included in the CICS® catalog manager
Apache License 2.0
6 stars 10 forks source link

Install on z/OS without Internet conenction #7

Closed namnetes closed 4 years ago

namnetes commented 4 years ago

Hello,

How can I install the package and satisfy all necessary dependencies on z/OS system without any Internet connection ?

Thank's for your help. Best regards Alan

markcocker commented 4 years ago

@namnetes Typically companies setup an internal enterprise registry with approved packages and setup npm to access that instead, eg. see Configuring your registry settings as an npm Enterprise user. Another approach if your dependencies do not include natives is to download those on another platform and copy them onto z/OS, either into a global path or a parent path of the application.

namnetes commented 4 years ago

@markcocker Thank you for your reply. I will follow the suggested other approach to sasisfy the depencies.