2015-10-04 120 views
0

我在我的應用程序中同時運行nodejs和php,但只能使用一個端口。所以我想要做的就是讓在的NodeJS端口上的用戶,然後通過路由給的index.php給用戶,這樣的:通過nodejs socket.io服務PHP

app.get("index.php") 

有沒有人對我怎麼可能什麼想法做這個?非常感謝...

回答

0

你可以嘗試將你想用的index.php文件放在package.json文件中,作爲你的應用程序的主要入口點。只需用您自己的網址替換主要媒體資源。

的package.json:

 { 
    "name": "NodeTesting", 
    "description": "Used for node testing and developing scripts", 
    "version": "0.0.1", 
    "main": "http://localhost/launchjs/index.php", 
    "author": { 
     "name": "bytewarestudios", 
     "email": "[email protected]bytewarestudios.com" 
    }, 
    "keywords": [], 
    "licenses": { 
     "type": "none" 
    }, 
    "repository": { 
     "type": "git", 
     "url": "git://github.com//bytewarestudios" 
    }, 
    "bugs": { 
     "url": "http://github.com//NodeTesting/issues" 
    } 
}