mirror of
https://github.com/openfaas/faas.git
synced 2025-06-09 08:46:48 +00:00
8 lines
191 B
JavaScript
8 lines
191 B
JavaScript
'use strict'
|
|
let os = require('os');
|
|
const getStdin = require('get-stdin');
|
|
|
|
getStdin().then(content => {
|
|
console.log(os.platform(), os.arch(), os.cpus(), os.uptime(), os.userInfo());
|
|
});
|