A New Chapter for MagicMirror: The Community Takes the Lead
Read the statement by Michael Teeuw here.
Read the statement by Michael Teeuw here.
Version identification
-
I know I’ve seen it on here but can’t find how to identify which version of various software is installed…
node, npm, MagicMirror and others…
Thanks
Dennis N6NG -
@N6NG
npm -v
andnode -v
-
@mumblebaj Thanks
-
@N6NG most commands support help
xxx --help
or
xxx -hnpm -v
node -vsome require uppercase
python -V
pm2 -Vbut help will help you figure it out
magicmirror shows its version on startup,
Starting MagicMirror: v2.20.0-develop
but u can get it from the package.json file too
grep version package.json(base) sam@sams:~/MagicMirror$ grep version package.json "version": "2.20.0-develop",
-
@sdetweil Thanks again… I’ll try to remember “help is my friend”