1.1.1 • Published 7 years ago

jslm v1.1.1

Weekly downloads
1
License
MIT
Repository
github
Last release
7 years ago

jslm

collect system, os, and user information.

installation

make sure you have npm installed onto your computer. run this command to install:

npm install jslm

usage

const jslm = require('jslm')

// prints out user info
console.log(jslm('user.name'))
console.log(jslm('user.home'))

// prints out os info
console.log(jslm('os.platform'))
console.log(jslm('os.release'))

// prints out system info
console.log(jslm('sys.memory.free'))
console.log(jslm('sys.memory.total'))
console.log(jslm('sys.arch'))