📜  MEAN.JS-构建静态路由节点Express

📅  最后修改于: 2020-10-22 05:22:38             🧑  作者: Mango


本章演示了使用NodeExpress的应用程序的构建路径。

在上一章中,我们创建了一个node-express应用程序。导航到名为mean-demo的项目目录。使用以下命令转到目录-

$ cd mean-demo

设置路线

路由通过使用传入请求的URL用作映射服务。打开server.js文件并设置路由,如下所示-

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

// set our port
const port = 3000;
app.get('/', (req, res) ⇒ res.send('Welcome to Tutorialspoint!'));

//defining route
app.get('/tproute', function (req, res) {
   res.send('This is routing for the application developed using Node and Express...');
});

// startup our app at http://localhost:3000
app.listen(port, () ⇒ console.log(`Example app listening on port ${port}!`));

正在运行的应用程序

接下来,使用以下命令运行应用程序-

$ npm start

您将得到确认,如下图所示:

正在运行的应用程序

现在,转到浏览器并输入http:// localhost:3000 / myroute 。您将获得如下图所示的页面-

节点快车