廢話很少說,先用express搭建一個本地服務javascript
var express = require('express')
var path = require('path')
var app = express()
app.get('/', (req, res)=>{
res.send('Hello world');
});
app.listen(8083, ()=>{
console.log('Server is running at http://localhost:8083')
})
複製代碼
而後在命令行輸入node app啓動服務java
這個時候咱們打開瀏覽器訪問http://localhost:8083就能看到hello world了,表示請求成功瞭如圖 node
app.get('/img', function (req, res, next) {
res.sendFile(path.join(__dirname, 'public/2.png'));
})
複製代碼
這個時候咱們在瀏覽器輸入http://localhost:8083/img就能訪問到圖片了 git
app.get('/air', function (req, res, next) {
res.sendFile(path.join(__dirname, 'public/lenveo.mp4'));
})
複製代碼
一樣的咱們用瀏覽器打開http://localhost:8083/air就能訪問到視頻了 express