resume-client-socket.io
Version:
Resume Client API for Socket.IO and Node.JS - Medical Speech to Summarized Text
32 lines (28 loc) • 1.13 kB
JavaScript
// @ts-check
// ==================================================================================
// cli.js
// ----------------------------------------------------------------------------------
// Description: System Information - library
// for Node.js
// Copyright: (c) 2014 - 2021
// Author: Sebastian Hildebrandt
// ----------------------------------------------------------------------------------
// License: MIT
// ==================================================================================
// ----------------------------------------------------------------------------------
// Dependencies
// ----------------------------------------------------------------------------------
const si = require('./index');
// ----------------------------------------------------------------------------------
// Main
// ----------------------------------------------------------------------------------
(function() {
si.getStaticData().then(
(data => {
data.time = si.time();
console.log(JSON.stringify(data, null, 2));
}
));
})();
;