请问一下,在express中怎么判断当前的操作系统是linux?
请问一下,在express中怎么判断当前的操作系统是linux
1 回复
可以通过 os.platform(),如:
var os = require('os');
var platform = os.platform()
Possible values are ‘darwin’, ‘freebsd’, ‘linux’, ‘sunos’ or ‘win32’