- 使用npm run build将项目打包,打包完成后的项目在dist中
- 在dist中添加app.js,代码如下:
const http = require('http')
const fs = require('fs')
let server = http.createServer();
server.on('request', (req,res)=>{
if(req.url.startsWith('/static')){
fs.readFile('.' + req.url, (err,data) => {
res.end(data);
})
} else {
fs.readFile('./index.html', (err,data) => {
res.end(data);
})
}
})
server.listen(8888);
console.log('Server running at http://127.0.0.1:8888/');
- 然后在dist目录下运行node app.js
- 将打包后的两个文件(index.html和static)放在新建的IIS网站中
- 新建步骤:
添加规则,选择空白规则
然后点击应用,即可访问配置接口下的服务了。