中文字幕av专区_日韩电影在线播放_精品国产精品久久一区免费式_av在线免费观看网站

溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

nodejs如何搭建web服務器

發布時間:2020-12-05 11:29:37 來源:億速云 閱讀:116 作者:小新 欄目:web開發

小編給大家分享一下nodejs如何搭建web服務器,希望大家閱讀完這篇文章后大所收獲,下面讓我們一起去探討吧!

前端獲取數據時經常會遇到跨域問題,用 nginx 做反向代理就可以解決此問題。但是 nginx 屬于中間件代理,不同開發者布署的 web 服務器地址可能不一樣,這樣 nginx 的配置就不能做到通用了。

如果能有一個客戶端代理,隨著項目源代碼提交,這樣就可以免去不同開發者的代理配置。webpack-dev-server 就是這樣的一個客戶端代理,但是如果項目沒有用到 webpack,那就沒辦法用了。那能不能仿照寫了一個簡單的 web 服務器,用于非 webpack 的項目呢。下面是代碼,望大佬們批評指正。

const request = require('request');
const express = require('express');
const path = require('path');

const app = express();

// 代理配置
const proxyTable = {  
    '/api': {
        target: 'http://localhost/api' 
    }
};
app.use(function(req, res,next) {  
    const url = req.url;  
    if (req.method == 'OPTIONS') {      
      console.log('options_url: ', url); 
      
       //  設置cors 跨域
      // res.header("Access-Control-Allow-Origin", req.headers.origin || '*');
      // res.header("Access-Control-Allow-Headers", "Content-Type, Authorization, X-Requested-With");
      // res.header("Access-Control-Allow-Methods", "PUT,POST,GET,DELETE,OPTIONS");

      // 設置 cookie
      // res.header("Access-Control-Allow-Credentials", true);
      
      res.status(200).send('OK');     
      return;
    } 
    // console.log('req_url: ', url);
    next();
});

// 設置靜態目錄
app.use(express.static(path.join(__dirname, 'static')));

app.use('/', function(req, res) {  
      const url = req.url; 
      const proxy = Object.keys(proxyTable);  
      let not_found = true; 
      for (let index = 0; index < proxy.length; index++) {    
          const k = proxy[index];    
          const i = url.indexOf(k);   
          if (i >= 0) {     
              not_found = false;     
              const element = proxyTable[k];      
              const newUrl = element.target + url.slice(i+k.length);
              req.pipe(request({url: newUrl, timeout: 60000},(err)=>{
                  if(err){          
                      console.log('error_url: ', err.code,url);           
                      res.status(500).send('');
                  }     
              })).pipe(res);      
              break;
          } 
      }  
      if(not_found) {    
          console.log('not_found_url: ', url);
          res.status(404).send('Not found');
      } else {    
          console.log('proxy_url: ', url);
      }
});

// 監聽端口      
const PORT = 8080;
app.listen(PORT, () => {  
    console.log('HTTP Server is running on: http://localhost:%s', PORT);
});

PS:static 放靜態頁面

看完了這篇文章,相信你對nodejs如何搭建web服務器有了一定的了解,想了解更多相關知識,歡迎關注億速云行業資訊頻道,感謝各位的閱讀!

向AI問一下細節

免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

AI

沙田区| 巴青县| 华宁县| 美姑县| 渑池县| 阳朔县| 渝中区| 扬中市| 郁南县| 康定县| 京山县| 仁寿县| 蚌埠市| 永吉县| 旬邑县| 郯城县| 肥乡县| 垫江县| 常熟市| 徐闻县| 外汇| 开封市| 秀山| 集安市| 富裕县| 临武县| 岳池县| 扶绥县| 六枝特区| 台安县| 会泽县| 浮山县| 梨树县| 平泉县| 清徐县| 济南市| 通城县| 永春县| 怀远县| 盐池县| 宁明县|