javascript nodejs主路由文件示例(快递)
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了javascript nodejs主路由文件示例(快递)相关的知识,希望对你有一定的参考价值。
const express = require('express');
const app = express();
app.get("/", (req, res) => {
res.render("pages/main.ejs")
});
app.get("/backup", (req, res) => {
let api = new API();
api.login(hostname, user, password, api.logout);
res.send('working');
});
// serve css and js
app.use('/public', express.static('public'));
// none-existing url, 404 error
app.get("*", function(req, res){
res.send("404 error")
});
// server is listening
app.listen(3000, function(){
console.log("Server has started!!!")
});
以上是关于javascript nodejs主路由文件示例(快递)的主要内容,如果未能解决你的问题,请参考以下文章
NodeJS及路由
javascript初识 NodeJS
NodeJS + Express 提供的 HTML 文件未加载 js 文件?
Nodejs学习笔记(十五)--- Node.js + Koa2 构建网站简单示例
Nodejs动态加载路由,Nodejs遍历目录,Nodejs路由工具
javascript NodeJs ExpressJS中间件,允许特定于bot / crawler的路由。基于OS项目的Prerender.IO中间件用于节点。