search
HomeWeb Front-endFront-end Q&AHow to connect html to nodejs
How to connect html to nodejsMay 13, 2023 pm 05:10 PM

With the rapid development of web applications in recent years, Node.js (a lightweight JavaScript runtime environment) has also been widely used to develop various server-side applications. HTML is the core language on the web, so how to connect HTML to the Node.js backend? This article will answer them one by one for you.

In order to better understand the relationship between HTML and Node.js, you need to first understand how HTML works. HTML is the basic language for Web page design. It describes the structure and layout of the page through a large number of tags (tags), and displays content through various media files (such as images, sounds, and videos). Node.js is a back-end server technology based on JavaScript language, which can handle web requests and return web pages to the client. When a client requests a web page, Node.js retrieves the required data from the back-end database and then dynamically inserts it into the HTML code to generate a dynamic web page.

In order to realize the connection between HTML and Node.js, some frameworks and libraries need to be used to reduce the workload. The following are some commonly used frameworks and libraries:

1.Express.js

Express.js is a web application framework based on Node.js, which can help developers quickly build scalable web application. It provides a series of APIs to make application development easier.

The following is a simple example of using Express.js to connect HTML and Node.js:

const express = require('express');
const app = express();

app.use(express.static('public'));
app.get('/', (req, res) => {
  res.sendFile(__dirname + '/public/index.html');
});

app.listen(3000, () => {
  console.log('App listening on port 3000!');
});

In the above code, the express() function creates an Express application instance , and assign it to the app variable. The app.use() function specifies that the web server hosts static files (such as CSS and JavaScript files) in the public directory. The app.get() function specifies that when the URL path is /, the index.html file is sent from the server. app.listen()The function binds the application to port 3000.

2.Handlebars.js

Handlebars.js is a popular template engine that can generate HTML based on pages and data. It integrates very well with the Express.js framework for Node.js, with the help of which you can connect HTML and Node.js more conveniently.

The following is a simple example of using Handlebars.js to connect HTML and Node.js:

const express = require('express');
const exphbs  = require('express-handlebars');

const app = express();

app.engine('handlebars', exphbs());
app.set('view engine', 'handlebars');

app.get('/', (req, res) => {
  res.render('home', {
    name: 'World'
  });
});

app.listen(3000, () => {
  console.log('App listening on port 3000!');
});

In the above code, the exphbs() function returns a Handlebars.js instance , and assign it to the first parameter of the app.engine() function. app.set()The function specifies the template engine as Handlebars.js. app.get()The function renders the home.handlebars template when accessing the root path and passes the set name variable to "World".

3.Socket.IO

Socket.IO is a library for real-time communication between Node.js and the browser. It allows two-way communication between server and client, enabling real-time communication between HTML and Node.js.

The following is a simple example of using Socket.IO to connect HTML and Node.js:

Server code:

const express = require('express');
const app = express();
const server = require('http').createServer(app);
const io = require('socket.io')(server);

io.on('connection', (socket) => {
  console.log('a user connected');

  socket.on('disconnect', () => {
    console.log('user disconnected');
  });

  socket.on('chat message', (msg) => {
    console.log('message: ' + msg);
    io.emit('chat message', msg);
  });
});

server.listen(3000, () => {
  console.log('App listening on port 3000!');
});

Client code:

<!DOCTYPE html>
<html>
<head>
  <title>Socket.IO Example</title>
  <script src="/socket.io/socket.io.js"></script>
</head>
<body>
  <ul id="messages"></ul>
  <form id="message-form">
    <input type="text" id="message-input">
    <button type="submit">Send</button>
  </form>
  <script>
    var socket = io();

    var form = document.getElementById('message-form');
    form.addEventListener('submit', function(e) {
      e.preventDefault();
      var msgInput = document.getElementById('message-input');
      socket.emit('chat message', msgInput.value);
      msgInput.value = '';
    });

    socket.on('chat message', function(msg) {
      var messages = document.getElementById('messages');
      var message = document.createElement('li');
      message.innerHTML = msg;
      messages.appendChild(message);
    });
  </script>
</body>
</html>

In the above code, the server code uses the socket.io module to create a Socket.IO server and records logs when a connection is established between the client and the server. When receiving the chat message message from the client, the server broadcasts the message to all currently connected clients. The client uses the socket.io.js library to connect to the Socket.IO server, the form submission data is sent to the Socket.IO server, and the broadcast messages are automatically received through the Socket.IO client.

In summary, the connection between HTML and Node.js can achieve flexibility and real-time development of web applications. While using frameworks and libraries can make connecting easier, it's important to have a deep understanding of HTML, Node.js, and web development.

The above is the detailed content of How to connect html to nodejs. For more information, please follow other related articles on the PHP Chinese website!

Statement
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
What is useEffect? How do you use it to perform side effects?What is useEffect? How do you use it to perform side effects?Mar 19, 2025 pm 03:58 PM

The article discusses useEffect in React, a hook for managing side effects like data fetching and DOM manipulation in functional components. It explains usage, common side effects, and cleanup to prevent issues like memory leaks.

Explain the concept of lazy loading.Explain the concept of lazy loading.Mar 13, 2025 pm 07:47 PM

Lazy loading delays loading of content until needed, improving web performance and user experience by reducing initial load times and server load.

How does currying work in JavaScript, and what are its benefits?How does currying work in JavaScript, and what are its benefits?Mar 18, 2025 pm 01:45 PM

The article discusses currying in JavaScript, a technique transforming multi-argument functions into single-argument function sequences. It explores currying's implementation, benefits like partial application, and practical uses, enhancing code read

What are higher-order functions in JavaScript, and how can they be used to write more concise and reusable code?What are higher-order functions in JavaScript, and how can they be used to write more concise and reusable code?Mar 18, 2025 pm 01:44 PM

Higher-order functions in JavaScript enhance code conciseness, reusability, modularity, and performance through abstraction, common patterns, and optimization techniques.

How does the React reconciliation algorithm work?How does the React reconciliation algorithm work?Mar 18, 2025 pm 01:58 PM

The article explains React's reconciliation algorithm, which efficiently updates the DOM by comparing Virtual DOM trees. It discusses performance benefits, optimization techniques, and impacts on user experience.Character count: 159

How do you connect React components to the Redux store using connect()?How do you connect React components to the Redux store using connect()?Mar 21, 2025 pm 06:23 PM

Article discusses connecting React components to Redux store using connect(), explaining mapStateToProps, mapDispatchToProps, and performance impacts.

What is useContext? How do you use it to share state between components?What is useContext? How do you use it to share state between components?Mar 19, 2025 pm 03:59 PM

The article explains useContext in React, which simplifies state management by avoiding prop drilling. It discusses benefits like centralized state and performance improvements through reduced re-renders.

How do you prevent default behavior in event handlers?How do you prevent default behavior in event handlers?Mar 19, 2025 pm 04:10 PM

Article discusses preventing default behavior in event handlers using preventDefault() method, its benefits like enhanced user experience, and potential issues like accessibility concerns.

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

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 agoBy尊渡假赌尊渡假赌尊渡假赌
R.E.P.O. Best Graphic Settings
2 weeks agoBy尊渡假赌尊渡假赌尊渡假赌
R.E.P.O. How to Fix Audio if You Can't Hear Anyone
2 weeks agoBy尊渡假赌尊渡假赌尊渡假赌

Hot Tools

MinGW - Minimalist GNU for Windows

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.

DVWA

DVWA

Damn Vulnerable Web App (DVWA) is a PHP/MySQL web application that is very vulnerable. Its main goals are to be an aid for security professionals to test their skills and tools in a legal environment, to help web developers better understand the process of securing web applications, and to help teachers/students teach/learn in a classroom environment Web application security. The goal of DVWA is to practice some of the most common web vulnerabilities through a simple and straightforward interface, with varying degrees of difficulty. Please note that this software

Notepad++7.3.1

Notepad++7.3.1

Easy-to-use and free code editor

SublimeText3 Mac version

SublimeText3 Mac version

God-level code editing software (SublimeText3)

Atom editor mac version download

Atom editor mac version download

The most popular open source editor