使用express框架的示例搭建node服务器

最终目录结构

demo
│   node_modules
└───public
│   │   index.html
│   │   index.css
│   └───index.js
└───server.js

一、使用express框架的示例
1.下载express依赖

cnpm install express

2.server.js代码

//server.js
var express = require('express');
var app = express();
 
app.use(express.static('public'));//express.static是express提供的内置的中间件用来设置静态文件路径
 
app.get('/index.htm', function (req, res) {
    res.sendFile(__dirname + "/" + "index.htm");
})
 
var server = app.listen(3000, function () {
    console.log("监听3000端口")
})

3.public目录里面的index.html、index.css、index.js (其他几个方法公用这个文件夹的面问资源文件)



    
        
        本地服务器
        
        
        
    
    
        

本地服务器

//index.css
body{
    background: #fff000;
}
//index.js
console.log("index.html加载了index.js")

4.运行

node server.js

你可能感兴趣的:(使用express框架的示例搭建node服务器)