Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
var options = { https.globalAgent.options.ca: [fs.readFileSync('')] };
ファイルを実行すると、構文エラーが発生します。
おそらく次のいずれかを意味していました。
var options = { 'https.globalAgent.options.ca': [fs.readFileSync('')] };
またはこれ:
var options = { https: { globalAgent: { options: { ca: [fs.readFileSync('')] } } } };