Table of Contents
Preface
Create a static file server
Use STREAM.PIPE() to optimize data transmission
Understanding streams and pipes
Run
Handling server errors
Use fs.stat() to implement error handling
Home Web Front-end JS Tutorial Serving static files with Node

Serving static files with Node

Jul 07, 2018 pm 05:18 PM
javascript node.js

This article mainly introduces the use of Node to provide static file services. It has a certain reference value. Now I share it with you. Friends in need can refer to it.

Preface

For a For web applications, it is often necessary to serve static files (CSS, JavaScript, images). This article will introduce how to make your own static file server.

Create a static file server

Each static file server has a root directory, which is the basic directory that provides file services. So we need to define a root variable on the server we are about to create, which will serve as the root directory of our static file server:

var http = require('http')
var join = require('path').join
var fs = require('fs')

var root = __dirname
Copy after login

__dirname is a magical variable in Node, and its value is where the file is located The path to the directory. In this example, the server will use the directory where this script is located as the root directory of the static files.

With the path of the file, the content of the file also needs to be transferred.
This can be done with fs.ReadStream, which is one of the Stream classes in Node. A successful call to fs.createReadStream() returns a new fs.ReadStream object.
The following code implements a simple but fully functional file server.

var server = http.createServer(function(req, res){
  let path = join(root, req.url)
  let stream = fs.createReadStream(path)
  stream.on('data', function(chunk){
    res.write(chunk)
  })
  stream.on('end', function(){
    res.end()
  })
})

server.listen(3000)
Copy after login

This file server generally works, but there are many details to consider. Next, we need to optimize data transmission and streamline the server code.

Use STREAM.PIPE() to optimize data transmission

Although the above code looks good, Node also provides a more advanced implementation mechanism: Stream.pipe(). Using this method can greatly simplify the server code. The optimized code is as follows:

var server = http.createServer(function(req, res){
  let path = join(root, req.url)
  let stream = fs.createReadStream(path)
  stream.pipe(res)
})

server.listen(3000)
Copy after login

Is this way of writing simpler and clearer?

Understanding streams and pipes

Flow is a very important concept in Node. You can think of the pipes in Node as water pipes. If you want a certain source (such as a water heater) to flow out If the water flows to a destination (such as a kitchen faucet), you can add a pipe in the middle to connect them, so that the water will flow along the pipe from the source to the destination.
The same is true for the pipeline in Node, but what flows in it is not water, but data from the source (i.e. ReadableStream). The pipeline can allow them to "flow" to a certain destination (i.e. WritableStream). You can use the pipe method to connect pipes:

ReadableStream.pipe(WritableStream)
Copy after login

Reading a file (ReadableStream) and writing the contents to another file (WritableStream) uses a pipe:

let readStream = fs.createReadStream('./original.txt') 
let writeStream = fs.createWriteStream('./copy.txt') 
readStream.pipe(writeStream)
Copy after login

All ReadableStreams can access any WritableStream. For example, the HTTP request (req) object
is a ReadableStream, and you can let the contents flow to a file:

req.pipe(fs.createWriteStream('./req-body.txt'))
Copy after login

Run

Now let's run the above code, we are at the root Place a picture in the directory, such as peiqi.jpg.
Enter http://127.0.0.1:3000/peiqi.jpg in the browser, and you will find that the cute peiqi has appeared in front of you. peiqi.jpg is sent from the http server to the client (browser) as the response body.
Serving static files with Node

Although it has tasted success, this static file server is not complete enough because it is prone to errors. Imagine that if the user accidentally enters a resource that does not exist, such as abc.html, the server will crash immediately. So we have to add an error handling mechanism to this file server to make it robust.

Handling server errors

In Node, all classes that inherit EventEmitter may emit error events. In order to monitor errors, register an error event handler (such as the following code) on fs.ReadStream, and return response status code 500 to indicate an internal server error:

  stream.on('error', function(err){
    res.statusCode = 500
    res.end('服务器内部错误')
  })
Copy after login

Use fs.stat() to implement error handling

We can use fs.stat() to obtain relevant information about the file. If the file does not exist, fs.stat() will put ENOENT# in err.code. ##In response, you can then return error code 404 to indicate to the client that the file was not found. If fs.stat() returns other error codes, you can return the generic error code 500. The refactored code is as follows:

var server = http.createServer(function(req, res){
  let path = join(root, req.url)

  fs.stat(path, function(err, stat) {
    if (err) {
      if ('ENOENT' == err.code) {
        res.statusCode = 404
        res.end('Not Found')
      } else {
        res.statusCode = 500
        res.end('服务器内部错误')
      }
    } else { // 有该文件
      res.setHeader('Content-Length', stat.size)
      var stream = fs.createReadStream(path)
      stream.pipe(res)

      stream.on('error', function(err) { // 如果读取文件出错
        res.statusCode = 500
        res.end('服务器内部错误')
      })
    }
  })
})

server.listen(3000)
Copy after login
Note

The file server built in this section is a simplified version. If you want to put this into a production environment, you should check the validity of the input more thoroughly to prevent users from accessing parts of the content through directory traversal attacks that you did not intend to open to them.

Summary

After reading this, I believe you are smart and have mastered how to use Node to create a static server. In the next article, I will introduce to you how to use Node to process files uploaded by users and Store in the server.

The above is the entire content of this article. I hope it will be helpful to everyone's study. For more related content, please pay attention to the PHP Chinese website!

Related recommendations:

Use Node to process file uploads

Interpret some of the Redux source code through ES6 writing

The above is the detailed content of Serving static files with Node. For more information, please follow other related articles on the PHP Chinese website!

Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn

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

AI Hentai Generator

AI Hentai Generator

Generate AI Hentai for free.

Hot Article

R.E.P.O. Energy Crystals Explained and What They Do (Yellow Crystal)
2 weeks ago By 尊渡假赌尊渡假赌尊渡假赌
Hello Kitty Island Adventure: How To Get Giant Seeds
1 months ago By 尊渡假赌尊渡假赌尊渡假赌
Two Point Museum: All Exhibits And Where To Find Them
1 months ago By 尊渡假赌尊渡假赌尊渡假赌

Hot Tools

Notepad++7.3.1

Notepad++7.3.1

Easy-to-use and free code editor

SublimeText3 Chinese version

SublimeText3 Chinese version

Chinese version, very easy to use

Zend Studio 13.0.1

Zend Studio 13.0.1

Powerful PHP integrated development environment

Dreamweaver CS6

Dreamweaver CS6

Visual web development tools

SublimeText3 Mac version

SublimeText3 Mac version

God-level code editing software (SublimeText3)

How to implement an online speech recognition system using WebSocket and JavaScript How to implement an online speech recognition system using WebSocket and JavaScript Dec 17, 2023 pm 02:54 PM

How to use WebSocket and JavaScript to implement an online speech recognition system Introduction: With the continuous development of technology, speech recognition technology has become an important part of the field of artificial intelligence. The online speech recognition system based on WebSocket and JavaScript has the characteristics of low latency, real-time and cross-platform, and has become a widely used solution. This article will introduce how to use WebSocket and JavaScript to implement an online speech recognition system.

WebSocket and JavaScript: key technologies for implementing real-time monitoring systems WebSocket and JavaScript: key technologies for implementing real-time monitoring systems Dec 17, 2023 pm 05:30 PM

WebSocket and JavaScript: Key technologies for realizing real-time monitoring systems Introduction: With the rapid development of Internet technology, real-time monitoring systems have been widely used in various fields. One of the key technologies to achieve real-time monitoring is the combination of WebSocket and JavaScript. This article will introduce the application of WebSocket and JavaScript in real-time monitoring systems, give code examples, and explain their implementation principles in detail. 1. WebSocket technology

How to implement an online reservation system using WebSocket and JavaScript How to implement an online reservation system using WebSocket and JavaScript Dec 17, 2023 am 09:39 AM

How to use WebSocket and JavaScript to implement an online reservation system. In today's digital era, more and more businesses and services need to provide online reservation functions. It is crucial to implement an efficient and real-time online reservation system. This article will introduce how to use WebSocket and JavaScript to implement an online reservation system, and provide specific code examples. 1. What is WebSocket? WebSocket is a full-duplex method on a single TCP connection.

How to use JavaScript and WebSocket to implement a real-time online ordering system How to use JavaScript and WebSocket to implement a real-time online ordering system Dec 17, 2023 pm 12:09 PM

Introduction to how to use JavaScript and WebSocket to implement a real-time online ordering system: With the popularity of the Internet and the advancement of technology, more and more restaurants have begun to provide online ordering services. In order to implement a real-time online ordering system, we can use JavaScript and WebSocket technology. WebSocket is a full-duplex communication protocol based on the TCP protocol, which can realize real-time two-way communication between the client and the server. In the real-time online ordering system, when the user selects dishes and places an order

JavaScript and WebSocket: Building an efficient real-time weather forecasting system JavaScript and WebSocket: Building an efficient real-time weather forecasting system Dec 17, 2023 pm 05:13 PM

JavaScript and WebSocket: Building an efficient real-time weather forecast system Introduction: Today, the accuracy of weather forecasts is of great significance to daily life and decision-making. As technology develops, we can provide more accurate and reliable weather forecasts by obtaining weather data in real time. In this article, we will learn how to use JavaScript and WebSocket technology to build an efficient real-time weather forecast system. This article will demonstrate the implementation process through specific code examples. We

Simple JavaScript Tutorial: How to Get HTTP Status Code Simple JavaScript Tutorial: How to Get HTTP Status Code Jan 05, 2024 pm 06:08 PM

JavaScript tutorial: How to get HTTP status code, specific code examples are required. Preface: In web development, data interaction with the server is often involved. When communicating with the server, we often need to obtain the returned HTTP status code to determine whether the operation is successful, and perform corresponding processing based on different status codes. This article will teach you how to use JavaScript to obtain HTTP status codes and provide some practical code examples. Using XMLHttpRequest

How to use insertBefore in javascript How to use insertBefore in javascript Nov 24, 2023 am 11:56 AM

Usage: In JavaScript, the insertBefore() method is used to insert a new node in the DOM tree. This method requires two parameters: the new node to be inserted and the reference node (that is, the node where the new node will be inserted).

How to get HTTP status code in JavaScript the easy way How to get HTTP status code in JavaScript the easy way Jan 05, 2024 pm 01:37 PM

Introduction to the method of obtaining HTTP status code in JavaScript: In front-end development, we often need to deal with the interaction with the back-end interface, and HTTP status code is a very important part of it. Understanding and obtaining HTTP status codes helps us better handle the data returned by the interface. This article will introduce how to use JavaScript to obtain HTTP status codes and provide specific code examples. 1. What is HTTP status code? HTTP status code means that when the browser initiates a request to the server, the service

See all articles