A brief analysis of the POSIX standard of Node.js api
What is POSIX? What's included? The following article will take you to understand the POSIX standard of Node.js api and the characteristics of Node.js api. I hope it will be helpful to you!
[Recommended study: "nodejs Tutorial"]
If you have used the API of Node.js, will you feel Strange, why the name of the api is like this:
For example, create a directory:
const fs = require('fs'); fs.mkdir('/a/b/c', { recursive: true }, (err) => { if (err) throw err; });
Create a process:
const childProcess = require('child_process'); childProcess.fork('a/b/c.js'); childProcess.execFile('a/b/dddd'); childProcess.exec('"/path/to/test file/test.sh" arg1 arg2'); childProcess.spawn('ls', ['-lh', '/usr']);
mkdir, fork, exec, spawn, etc., what are these names? Did you get up?
If you have used the linux command or the c function library, you will find that these apis also have this name in the command and c function library.
Why is this so? Are these APIs standard?
Yes, this is the POSIX standard
What is POSIX
POSIX is the abbreviation of portable operating system interface (portable operating system interface) , x means unix, that is, it is inherited from unix.
Because if the functions and system calls provided by different operating systems are different, then the source code of the upper-layer application based on the operating system will be different. This results in the code written on one platform not being able to be used on another platform. Compile on.
How to do it?
What if the APIs provided by each operating system are the same? No matter how the underlying operating system implements these capabilities, it only needs to expose the same API to the application. In this way, the source code is cross-platform and can be run after compilation on different operating systems.
The standard for the APIs exposed by this unified operating system is POSIX.
This POSIX standard can be understood as an interface defined in ts. As long as the API of this interface is implemented, it is compatible with the POSIX standard.
POSIX was originally an extension of Unix. Linux implemented the POSIX standard. Later, Windows was forced to be compatible with the POSIX standard due to pressure. Otherwise, many Linux applications would not be able to run on Windows. . The same goes for our commonly used osx.
So, POSIX is some standard interfaces for the operating system to provide capabilities to upper-level applications, including system calls, c function libraries, and shell commands.
The so-called standards refer to those recognized by the ISO International Organization for Standardization. This is an international organization with members in various countries and is an organization that formulates various international standards. POSIX is the ISO/IEC 9945 standard (IEC is the standardization organization for electronics). In fact, POSIX was proposed by IEEE, which is an American standardization organization. The standards it proposed are recognized by ISO and will become international standards. For example, POSIX is the IEEE Std 1003 standard they proposed, which is now recognized by ISO and has become ISO/IEC 9945. standard.
What is included in POSIX
Let’s take a look at what system calls are provided by Linux that supports POSIX (system calls refer to those provided in the kernel code Program):
Process control:
- fork creates a new process
- execv runs the executable file
- exit terminates the process
File reading and writing
- open open the file
- close close the file descriptor
- write write the file
- read read the file
- truncate truncate the file
- fsync writes the part of the file in memory to disk
File system related
- access determines whether the file is available Access
- chdir Change the current working directory
- chown Change the file owner or user group
- stat Get file status information
- mkdir Create directory
- symlink Create symbolic link
- unlink Delete link
etc
Many of these system calls have APIs with the same name in Node.js, and the shell also has the same name Command:
For example:
fs.stats fs.access fs.chown fs.mkdir fs.open fs.close fs.read fs.write child_process.fork child_process.exec child_process.execFile
etc.
Features of Node.js api
Node.js is a js At runtime, many apis that provide operating system capabilities are injected into js based on v8, and many of these api designs directly use POSIX standard api names without much abstraction.
Java's JRE (java runtime) also provides an abstraction of operating system capabilities, but those APIs have little to do with the operating system POSIX APIs, and incorporate many design patterns, such as io stream decoration device mode.
The Node.js API is characterized by not many abstractions, and many API names are very similar to Linux commands, close to POSIX standards. Therefore, when learning Node.js, you still need to learn linux commands. The two have a certain relationship in design.
Summary
The POSIX standard is a standard for operating system capabilities. It defines what APIs the operating system should expose to applications, including shell commands, c function libraries, and system calls. etc. standards. The POSIX standard makes applications portable across platforms at the source code level, just by compiling them on different platforms.
POSIX is an international standard recognized by ISO. It was first proposed by IEEE, a standards association in the United States. ISO is an organization that specializes in customizing international standards, with members from many countries participating.
The API of Node.js does not do a lot of abstraction, and most of its names are more similar to the POSIX standard API. This is its characteristic. In contrast, the API exposed by JRE to Java does. A lot of abstraction.
Because many of the APIs of Node.js are close to the C function library and shell commands, learning Node.js combined with learning the shell commands, or those who know C can learn more about the system function library. reward.
Understanding POSIX is the prerequisite for understanding Node.js api design and learning Node.js well.
For more programming related knowledge, please visit: Programming Video! !
The above is the detailed content of A brief analysis of the POSIX standard of Node.js api. For more information, please follow other related articles on the PHP Chinese website!

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

AI Hentai Generator
Generate AI Hentai for free.

Hot Article

Hot Tools

Notepad++7.3.1
Easy-to-use and free code editor

SublimeText3 Chinese version
Chinese version, very easy to use

Zend Studio 13.0.1
Powerful PHP integrated development environment

Dreamweaver CS6
Visual web development tools

SublimeText3 Mac version
God-level code editing software (SublimeText3)

Hot Topics

How to crawl and process data by calling API interface in PHP project? 1. Introduction In PHP projects, we often need to crawl data from other websites and process these data. Many websites provide API interfaces, and we can obtain data by calling these interfaces. This article will introduce how to use PHP to call the API interface to crawl and process data. 2. Obtain the URL and parameters of the API interface. Before starting, we need to obtain the URL of the target API interface and the required parameters.

ReactAPI Call Guide: How to interact with and transfer data to the backend API Overview: In modern web development, interacting with and transferring data to the backend API is a common need. React, as a popular front-end framework, provides some powerful tools and features to simplify this process. This article will introduce how to use React to call the backend API, including basic GET and POST requests, and provide specific code examples. Install the required dependencies: First, make sure Axi is installed in the project

Oracle is a world-renowned database management system provider, and its API (Application Programming Interface) is a powerful tool that helps developers easily interact and integrate with Oracle databases. In this article, we will delve into the Oracle API usage guide, show readers how to utilize data interface technology during the development process, and provide specific code examples. 1.Oracle

In the world of data-driven applications and analytics, APIs (Application Programming Interfaces) play a vital role in retrieving data from various sources. When working with API data, you often need to store the data in a format that is easy to access and manipulate. One such format is CSV (Comma Separated Values), which allows tabular data to be organized and stored efficiently. This article will explore the process of saving API data to CSV format using the powerful programming language Python. By following the steps outlined in this guide, we will learn how to retrieve data from the API, extract relevant information, and store it in a CSV file for further analysis and processing. Let’s dive into the world of API data processing with Python and unlock the potential of the CSV format

OracleAPI integration strategy analysis: To achieve seamless communication between systems, specific code examples are required. In today's digital era, internal enterprise systems need to communicate with each other and share data, and OracleAPI is one of the important tools to help achieve seamless communication between systems. This article will start with the basic concepts and principles of OracleAPI, explore API integration strategies, and finally give specific code examples to help readers better understand and apply OracleAPI. 1. Basic Oracle API

Title: How to deal with Laravel API error problems, specific code examples are needed. When developing Laravel, API errors are often encountered. These errors may come from various reasons such as program code logic errors, database query problems, or external API request failures. How to handle these error reports is a key issue. This article will use specific code examples to demonstrate how to effectively handle Laravel API error reports. 1. Error handling in Laravel

RESTful API Development with Laravel: Building Modern Web Services With the rapid development of the Internet, the demand for Web services is increasing day by day. As a modern Web service architecture, RESTfulAPI is lightweight, flexible, and easy to expand, so it has been widely used in Web development. In this article, we will introduce how to use the Laravel framework to build a modern RESTful API. Laravel is a PHP language

How to use MongoDB to develop a simple CRUD API In modern web application development, CRUD (Create, Delete, Modify, Check) operations are one of the most common and important functions. In this article, we will introduce how to develop a simple CRUD API using MongoDB database and provide specific code examples. MongoDB is an open source NoSQL database that stores data in the form of documents. Unlike traditional relational databases, MongoDB does not have a predefined schema
