A brief analysis of how to obtain the mac system version using node
How to get the mac system version using node? The following article will introduce to you how to use node to elegantly obtain the mac system version. I hope it will be helpful to you!
#Today I suddenly encountered a compatibility requirement, which requires different compatibility processing according to different macOS versions.
Unexpectedly, the seemingly simple requirement also went through some twists and turns, but fortunately the problem was solved in the end.
Record the process of solving the problem here for the reference of other students with similar needs.
Get the system type
Since compatibility needs to be processed for the mac system, you first need to distinguish the system type. Fortunately, nodejs provides relevant API, just use os.platform()
to get the system type directly.
import { platform } from 'os'; console.log(platform()); // 'darwin'
It is worth mentioning that the corresponding name of macOS is not macOS
but darwin
.
In addition to obtaining the system type through the os package, we can also obtain it through process.platform
.
import { platform } from 'process'; console.log(platform); // 'darwin'
Get the system version
Many students who are familiar with node will say at this time that you can quickly obtain the system version through os.release()
. However, when you execute os.release()
, you will find that its results are not consistent with conventional understanding.
For example, my system version is 12.0.1
, but the execution result of os.release()
is 21.1.0
.
View node official documentationIt can be found that node determines the operating system through uname(3), so the execution result is contrary to conventional wisdom.
Get the system version through the command line
Since the system version obtained by os.release()
is difficult to understand, is there anything Can the solution directly obtain the actual system version number?
The sw_vers
command exists on mac, which can directly obtain system information.
$ sw_vers ProductName: macOS ProductVersion: 12.0.1 BuildVersion: 21A559
You can see that the sw_vers
command directly obtains the system version: 12.0.1
.
If no other system information is needed, we can directly obtain the system version by adding command line parameters, filtering the command line results.
$ sw_vers -ProductVersion 12.0.1
Since the command line is not case-sensitive, the command line parameters do not matter case. You can also write -productversion
or -ProductVersion
.
Now that we know how to write the command line, we only need to call the command line in node.
import { execSync } from 'child_process'; console.log(execSync('sw_vers -ProductVersion', { encoding: 'utf-8' })); // 12.0.1
Elegantly obtain the system version
You can obtain the correct system version by executing the command line command through the node sub-process. However, this method has performance flaws. It requires creating a sub-process to execute the command line. Compared with the os.release()
method, it is more expensive.
The problem with using os.release()
before is that the returned result is contrary to conventional wisdom, but its result is actually correct, but it requires a mapping.
So, the system version can be obtained elegantly through os.release()
and the mapping table.
import os from 'os'; const macVersionMap = new Map([ [21, ['Monterey', '12']], [20, ['Big Sur', '11']], [19, ['Catalina', '10.15']], [18, ['Mojave', '10.14']], [17, ['High Sierra', '10.13']], [16, ['Sierra', '10.12']], [15, ['El Capitan', '10.11']], [14, ['Yosemite', '10.10']], [13, ['Mavericks', '10.9']], [12, ['Mountain Lion', '10.8']], [11, ['Lion', '10.7']], [10, ['Snow Leopard', '10.6']], [9, ['Leopard', '10.5']], [8, ['Tiger', '10.4']], [7, ['Panther', '10.3']], [6, ['Jaguar', '10.2']], [5, ['Puma', '10.1']], ]); const getMacRelease = (release: string) => { const macRelease = release ?? os.release(); const firstReleaseVersion = Number(macRelease.split('.')[0]); const [name, version] = macVersionMap.get(firstReleaseVersion) || [ 'Unknown', '', ]; return { name, version, }; }; console.log(getMacRelease()) // 12
In order to make it easier for Mac to still recognize the newly released system, the new system version name is recognized as Unknow
, and the new version is recognized as an empty string.
This is to learn the mobile model scoring platform. If the version is empty, the default is the higher version, which does not affect the compatibility processing of lower versions.
Now, we can get the system version elegantly through node.
For more node-related knowledge, please visit: nodejs tutorial!
The above is the detailed content of A brief analysis of how to obtain the mac system version using node. For more information, please follow other related articles on the PHP Chinese website!

The main difference between Python and JavaScript is the type system and application scenarios. 1. Python uses dynamic types, suitable for scientific computing and data analysis. 2. JavaScript adopts weak types and is widely used in front-end and full-stack development. The two have their own advantages in asynchronous programming and performance optimization, and should be decided according to project requirements when choosing.

Whether to choose Python or JavaScript depends on the project type: 1) Choose Python for data science and automation tasks; 2) Choose JavaScript for front-end and full-stack development. Python is favored for its powerful library in data processing and automation, while JavaScript is indispensable for its advantages in web interaction and full-stack development.

Python and JavaScript each have their own advantages, and the choice depends on project needs and personal preferences. 1. Python is easy to learn, with concise syntax, suitable for data science and back-end development, but has a slow execution speed. 2. JavaScript is everywhere in front-end development and has strong asynchronous programming capabilities. Node.js makes it suitable for full-stack development, but the syntax may be complex and error-prone.

JavaScriptisnotbuiltonCorC ;it'saninterpretedlanguagethatrunsonenginesoftenwritteninC .1)JavaScriptwasdesignedasalightweight,interpretedlanguageforwebbrowsers.2)EnginesevolvedfromsimpleinterpreterstoJITcompilers,typicallyinC ,improvingperformance.

JavaScript can be used for front-end and back-end development. The front-end enhances the user experience through DOM operations, and the back-end handles server tasks through Node.js. 1. Front-end example: Change the content of the web page text. 2. Backend example: Create a Node.js server.

Choosing Python or JavaScript should be based on career development, learning curve and ecosystem: 1) Career development: Python is suitable for data science and back-end development, while JavaScript is suitable for front-end and full-stack development. 2) Learning curve: Python syntax is concise and suitable for beginners; JavaScript syntax is flexible. 3) Ecosystem: Python has rich scientific computing libraries, and JavaScript has a powerful front-end framework.

The power of the JavaScript framework lies in simplifying development, improving user experience and application performance. When choosing a framework, consider: 1. Project size and complexity, 2. Team experience, 3. Ecosystem and community support.

Introduction I know you may find it strange, what exactly does JavaScript, C and browser have to do? They seem to be unrelated, but in fact, they play a very important role in modern web development. Today we will discuss the close connection between these three. Through this article, you will learn how JavaScript runs in the browser, the role of C in the browser engine, and how they work together to drive rendering and interaction of web pages. We all know the relationship between JavaScript and browser. JavaScript is the core language of front-end development. It runs directly in the browser, making web pages vivid and interesting. Have you ever wondered why JavaScr


Hot AI Tools

Undresser.AI Undress
AI-powered app for creating realistic nude photos

AI Clothes Remover
Online AI tool for removing clothes from photos.

Undress AI Tool
Undress images for free

Clothoff.io
AI clothes remover

Video Face Swap
Swap faces in any video effortlessly with our completely free AI face swap tool!

Hot Article

Hot Tools

MinGW - Minimalist GNU for Windows
This project is in the process of being migrated to osdn.net/projects/mingw, you can continue to follow us there. MinGW: A native Windows port of the GNU Compiler Collection (GCC), freely distributable import libraries and header files for building native Windows applications; includes extensions to the MSVC runtime to support C99 functionality. All MinGW software can run on 64-bit Windows platforms.

VSCode Windows 64-bit Download
A free and powerful IDE editor launched by Microsoft

SAP NetWeaver Server Adapter for Eclipse
Integrate Eclipse with SAP NetWeaver application server.

SublimeText3 Chinese version
Chinese version, very easy to use

MantisBT
Mantis is an easy-to-deploy web-based defect tracking tool designed to aid in product defect tracking. It requires PHP, MySQL and a web server. Check out our demo and hosting services.
