search
HomeWeb Front-endJS TutorialWeb project using Node.js to implement online ordering function

Web project using Node.js to implement online ordering function

Nov 08, 2023 am 11:27 AM
nodejsOrder onlineweb project

Web project using Node.js to implement online ordering function

In order to meet the fast-paced lifestyle of modern people, more and more restaurants have begun to implement online ordering services, allowing customers to reserve, order and pay more conveniently and quickly. This article will introduce how to use Node.js to implement a simple online ordering web project and provide code examples.

  1. Environment configuration

First you need to install Node.js and npm package manager. You can download the installation package from the official website or use the package manager to install it. After the installation is complete, open the command line tool and enter the following command to confirm the version.

node -v //输出node版本号
npm -v //输出npm版本号
  1. Project initialization

Use the npm package manager to initialize the project and generate the package.json file.

npm init -y
  1. Install dependent modules

In the project root directory, use npm to install the Express framework and other necessary modules.

npm install express body-parser ejs --save

Among them, Express is a commonly used Web application framework in Node.js, which can easily and quickly create a Web server; body-parser is used to process HTTP request bodies, including query string, form data, etc.; ejs is Template engine for rendering dynamic pages.

  1. Create Server

In order for users to access our web application, we need to create a server. In the project root directory, create a new server.js file and write the following code:

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

app.listen(port, function() {
  console.log(`listening on port ${port}`);
});

This code creates an Express application and listens to port 3000. Run the following command to start the server.

node server.js

Enter http://localhost:3000 in the browser, and you should see a "Cannot GET /" page, indicating that the server has been started.

  1. Writing page

In order to allow users to order food, some Web pages need to be created. In the project root directory, create a new views folder to store the pages. Create the index.ejs file and write the following code:

<!DOCTYPE html>
<html lang="en">
<head>
  <meta charset="UTF-8">
  <title>在线点餐</title>
</head>
<body>
  <h1 id="欢迎来到我们的餐厅">欢迎来到我们的餐厅</h1>
  <h2 id="我们的菜单如下">我们的菜单如下:</h2>
  <ul>
    <% for(var i = 0; i < menu.length; i++) { %>
      <li><%= menu[i].name %> - <%= menu[i].price %>元</li>
    <% } %>
  </ul>
</body>
</html>

This code uses the ejs template engine to render a menu page. Among them, menu is a dynamic variable, and data will be obtained from the server when the code is executed.

  1. Route processing

In order for the page to display menu data, a routing processing function needs to be written. In server.js, add the following code:

app.set('view engine', 'ejs');

app.get('/', function(req, res) {
  const menu = [
    {name: '鸡蛋炒饭', price: 12},
    {name: '牛肉面', price: 15},
    {name: '鱼香肉丝', price: 18},
    {name: '红烧肉', price: 30},
  ];
  res.render('index', {menu: menu});
});

This code binds the route processing function to the GET request. When the root route / is accessed, the server will send the menu data and render the index.ejs template. , and pass the data to the template engine to finally generate an HTML page.

  1. Add CSS styles

In order to beautify the page, you need to add some CSS styles. Create a new public folder in the root directory and create a style.css file. Add the following code:

body {
  background-color: #f5f5f5;
  font-family: Arial, sans-serif;
  text-align: center;
}

h1 {
  margin-top: 50px;
}

ul {
  list-style: none;
  padding: 0;
}

li {
  margin-top: 10px;
  font-size: 18px;
  font-weight: bold;
}

This code defines the background color, font, alignment and other styles to make the page more beautiful.

  1. Modify the template file

In order to link the HTML page to the CSS style file, you need to modify the template file. Add the following code to the index.ejs file:

<link rel="stylesheet" href="/style.css" />

This code tells the browser to reference the style.css file in the public folder and add page styles.

  1. Summary

This article introduces how to use Node.js, Express and ejs template engine to implement an online ordering web project, and provides code examples. Through this article, readers can learn how to initialize the project, install dependent modules, create servers, write pages, handle routing, add CSS styles and other operations. Readers can further develop a more complete online ordering system based on these codes.

The above is the detailed content of Web project using Node.js to implement online ordering function. 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
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

Python vs. JavaScript: Performance and Efficiency ConsiderationsPython vs. JavaScript: Performance and Efficiency ConsiderationsApr 30, 2025 am 12:08 AM

The differences in performance and efficiency between Python and JavaScript are mainly reflected in: 1) As an interpreted language, Python runs slowly but has high development efficiency and is suitable for rapid prototype development; 2) JavaScript is limited to single thread in the browser, but multi-threading and asynchronous I/O can be used to improve performance in Node.js, and both have advantages in actual projects.

The Origins of JavaScript: Exploring Its Implementation LanguageThe Origins of JavaScript: Exploring Its Implementation LanguageApr 29, 2025 am 12:51 AM

JavaScript originated in 1995 and was created by Brandon Ike, and realized the language into C. 1.C language provides high performance and system-level programming capabilities for JavaScript. 2. JavaScript's memory management and performance optimization rely on C language. 3. The cross-platform feature of C language helps JavaScript run efficiently on different operating systems.

Behind the Scenes: What Language Powers JavaScript?Behind the Scenes: What Language Powers JavaScript?Apr 28, 2025 am 12:01 AM

JavaScript runs in browsers and Node.js environments and relies on the JavaScript engine to parse and execute code. 1) Generate abstract syntax tree (AST) in the parsing stage; 2) convert AST into bytecode or machine code in the compilation stage; 3) execute the compiled code in the execution stage.

The Future of Python and JavaScript: Trends and PredictionsThe Future of Python and JavaScript: Trends and PredictionsApr 27, 2025 am 12:21 AM

The future trends of Python and JavaScript include: 1. Python will consolidate its position in the fields of scientific computing and AI, 2. JavaScript will promote the development of web technology, 3. Cross-platform development will become a hot topic, and 4. Performance optimization will be the focus. Both will continue to expand application scenarios in their respective fields and make more breakthroughs in performance.

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

Notepad++7.3.1

Notepad++7.3.1

Easy-to-use and free code editor

SublimeText3 Linux new version

SublimeText3 Linux new version

SublimeText3 Linux latest version

VSCode Windows 64-bit Download

VSCode Windows 64-bit Download

A free and powerful IDE editor launched by Microsoft

SAP NetWeaver Server Adapter for Eclipse

SAP NetWeaver Server Adapter for Eclipse

Integrate Eclipse with SAP NetWeaver application server.

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),