是否可以在Node.js中知道NODE_MODULE_VERSION
?如果是,那怎么办?
我对VSCode的内置Node.js特别感兴趣,但是也许Node.js不会公开变量,但是VSCode API会公开?
答案 0 :(得分:1)
要在节点中访问电子称为NODE_MODULE_VERSION
,请使用:
process.versions.modules
该对象中的其他值:
> console.log(JSON.stringify(process.versions, null, 2))
{
"http_parser": "2.8.0",
"node": "8.16.2",
"v8": "6.2.414.78",
"uv": "1.23.2",
"zlib": "1.2.11",
"ares": "1.10.1-DEV",
"modules": "57",
"nghttp2": "1.39.2",
"napi": "4",
"openssl": "1.0.2s",
"icu": "60.1",
"unicode": "10.0",
"cldr": "32.0",
"tz": "2017c"
}