search
HomeWeb Front-endJS TutorialLet's talk about the path, os and url modules in Node.js

This article will give you a brief understanding of the path module (path), system module (os) and url module in Node. I hope it will be helpful to you!

Let's talk about the path, os and url modules in Node.js

Node.jsThe path module provides some APIs for path operations, and the os module provides Some APIs related to the operating system are provided. The url core module provides us with APIs for parsing URL addresses. Today we mainly learn about the common APIs of the path module, os module and url module!

1. Path module (path)

Provides operation path information API

  • path.extname (Get Extension of path information)

// 引入 path 模块
let path = require('path');

// 获取路径信息的扩展名
let info = path.extname('hello.html')
console.log(info);

Lets talk about the path, os and url modules in Node.js

  • ##path.resolve (

    Sequence of path or path fragments Resolved as an absolute path)

  • //resolve把一个路径或路径片段的序列解析为一个绝对路径
    let arr = ['/aaa','bbb','ccc']
    let info1 = path.resolve(...arr)  //数组解构一下
    console.log(info1);

Lets talk about the path, os and url modules in Node.js

    ##path.join (
  • Use platform-specific delimiters to connect path fragments and normalize the generated path

    )

    // join使用平台特点分隔符将path片段连接,并规范化生成的路径
    console.log(__dirname);
    let info2 = path.join(__dirname,'aaa','bbb','ccc')
    console.log(info2);

Lets talk about the path, os and url modules in Node.jsHere is a brief explanation of what these mean. :

    __dirname
  • : Get the complete directory name of the directory where the current executable file is located;
  • __filename
  • : Get the complete directory name of the current executable file The file name of the absolute path;
  • process.cwd()
  • : Get the file directory name when the node command is currently executed;
More APIs Please check the official document of node: http://nodejs.cn/api/path.html

2. System module (os)

provides some operating system related Information api

    os.cpus() (
  • Get cpu information

    )

  • os.arch( ) (
  • Get system architecture: x32 or x64

    )

  • os.totalmem() (
  • Get memory information

    )

  • ......
For more APIs, please check the node official documentation: http://nodejs.cn/api/os.html

3. url module

The url module provides practical tools for URL processing and parsing. Two sets of APIs are provided to process URLs: one is the legacy API url.parse, url.format(), url.resolve() from the old version, and the other is the new API that implements the WHATWG standard. It is recommended to use the new version and import the module using destructuring assignment.

  • Old version

    // 旧版
    // 引入 url 模块
    let url = require('url');
    // 解析(url.parse)
    let urlMore = url.parse('http://www.baidu.com?id=1&token=qwerty')  //旧版写法
    console.log(urlMore);
    
    // 合成(url.resolve)
    let urlMore2 = url.resolve('http://www.baidu.com','./aaa/ccc')
    console.log(urlMore2);

Lets talk about the path, os and url modules in Node.js

  • New version

    // 新版
    // 引入 url 模块
    let {URL} = require("url");
    
    // 传入一个完整的绝对地址
    let urlMore3 = new URL('http://www.baidu.com?id=1&token=qwerty')  //新版写法
    console.log(urlMore3);
    
    // 第一个参数传入相对路径,第二个参数传入绝对路径,两者拼接进行分析
    let urlMore4 = new URL('./ads/ddd','http://www.baidu.com?')  
    console.log(urlMore4);

Lets talk about the path, os and url modules in Node.js

Lets talk about the path, os and url modules in Node.js##Parameter analysis:

    hash
  • : Gets and sets the fragment part of the URL. Invalid URL characters contained in the value assigned to the hash attribute are percent-encoded.

  • #host
  • : Get and set the host part of the URL. (That is, the domain name plus the port part).

  • url.hostname
  • : Gets and sets the hostname part of the URL. The difference between

    url.host and url.hostname is that url.hostname does not contain the port.

  • href:
  • Get and set the serialized URL. Getting the value of the

    href attribute is equivalent to calling url.toString(). Setting the value of this property to a new value is equivalent to using new URL(value) to create a new URL object. Every property of the URL object will be modified. If the value set to the href attribute is an invalid URL, TypeError will be thrown.

  • origin
  • : Contains the host of the protocol, and obtains the origin of the read-only serialized URL.

  • #port
  • : Port gets and sets the port part of the URL. The port value can be a number or a numeric string ranging from 0 to 65535 (inclusive). The port can be an empty string, in which case the port will be automatically selected according to the protocol.

  • protocol
  • : Set the connection protocol, invalid protocol values ​​will be ignored. Such as http or https.

  • #search
  • : Gets and sets the serialized query part of the URL.

  • searchParams
  • : Get the

    URLSearchParams object representing the URL query parameters. This property is read-only. Use the url.search setting to replace the entire query parameters of a URL.

  • For more APIs, please check the node official documentation: http://nodejs.cn/api/url.html#urlresolvefrom-to

For more node-related knowledge, please visit: nodejs tutorial! !

The above is the detailed content of Let's talk about the path, os and url modules in Node.js. For more information, please follow other related articles on the PHP Chinese website!

Statement
This article is reproduced at:掘金社区. If there is any infringement, please contact admin@php.cn delete
Python vs. JavaScript: Choosing the Right Tool for the JobPython vs. JavaScript: Choosing the Right Tool for the JobMay 08, 2025 am 12:10 AM

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: Understanding the Strengths of EachPython and JavaScript: Understanding the Strengths of EachMay 06, 2025 am 12:15 AM

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.

JavaScript's Core: Is It Built on C or C  ?JavaScript's Core: Is It Built on C or C ?May 05, 2025 am 12:07 AM

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

JavaScript Applications: From Front-End to Back-EndJavaScript Applications: From Front-End to Back-EndMay 04, 2025 am 12:12 AM

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.

Python vs. JavaScript: Which Language Should You Learn?Python vs. JavaScript: Which Language Should You Learn?May 03, 2025 am 12:10 AM

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.

JavaScript Frameworks: Powering Modern Web DevelopmentJavaScript Frameworks: Powering Modern Web DevelopmentMay 02, 2025 am 12:04 AM

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.

The Relationship Between JavaScript, C  , and BrowsersThe Relationship Between JavaScript, C , and BrowsersMay 01, 2025 am 12:06 AM

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

Node.js Streams with TypeScriptNode.js Streams with TypeScriptApr 30, 2025 am 08:22 AM

Node.js excels at efficient I/O, largely thanks to streams. Streams process data incrementally, avoiding memory overload—ideal for large files, network tasks, and real-time applications. Combining streams with TypeScript's type safety creates a powe

See all articles

Hot AI Tools

Undresser.AI Undress

Undresser.AI Undress

AI-powered app for creating realistic nude photos

AI Clothes Remover

AI Clothes Remover

Online AI tool for removing clothes from photos.

Undress AI Tool

Undress AI Tool

Undress images for free

Clothoff.io

Clothoff.io

AI clothes remover

Video Face Swap

Video Face Swap

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

Hot Tools

mPDF

mPDF

mPDF is a PHP library that can generate PDF files from UTF-8 encoded HTML. The original author, Ian Back, wrote mPDF to output PDF files "on the fly" from his website and handle different languages. It is slower than original scripts like HTML2FPDF and produces larger files when using Unicode fonts, but supports CSS styles etc. and has a lot of enhancements. Supports almost all languages, including RTL (Arabic and Hebrew) and CJK (Chinese, Japanese and Korean). Supports nested block-level elements (such as P, DIV),

EditPlus Chinese cracked version

EditPlus Chinese cracked version

Small size, syntax highlighting, does not support code prompt function

SecLists

SecLists

SecLists is the ultimate security tester's companion. It is a collection of various types of lists that are frequently used during security assessments, all in one place. SecLists helps make security testing more efficient and productive by conveniently providing all the lists a security tester might need. List types include usernames, passwords, URLs, fuzzing payloads, sensitive data patterns, web shells, and more. The tester can simply pull this repository onto a new test machine and he will have access to every type of list he needs.

SublimeText3 English version

SublimeText3 English version

Recommended: Win version, supports code prompts!

PhpStorm Mac version

PhpStorm Mac version

The latest (2018.2.1) professional PHP integrated development tool