heroku安裝和nodejs程序部署

寫在前面:html

  在github項目裏面須要包含如下文件方可正常部署node

  一、一個叫 Procfile 的文件,內容是   web: node server.js 其中server.js是主運行文件git

  二、在server.js裏面監聽端口改成 server.listen(process.env.PORT || 5000); 其中5000能夠本身設置github

  三、package.json 須要安裝的包和一些參數說明web

    簡單寫法可爲express

{
    "name": "ceshi",
    "description": "ceshi file",
    "version": "0.4.0",
    "main": "server.js",
    "dependencies": {
        "express": "3.4.x"
    },
    "engines": {
        "node": "0.10.x",
        "npm": "1.2.x"
    }
}

咱們去 https://www.heroku.com/ 申請個帳號,而後下載它的工具包 https://toolbelt.heroku.com/ ,而後再在命令行裏面,經過 heroku login 來登陸。npm

上面這些作好就能夠進行下一步程序的部署了json

經過heroku部署nodejs瀏覽器

  一、在cmd中輸入:git clone https://github.com/yinuoxiaowu/ceshi(這個爲本身的github上面的項目)工具

  

  二、切換至項目文件目錄cd demo02

  

  三、使用heroku create命令

  

  四、使用git push heroku master命令

  

  五、輸入heroku ps:scale web=1

  

  六、最後啓動heroku open

  

  七、這時會自動打開瀏覽器訪問部署的項目頁面:

  

至此,一個nodejs程序就部署完成了,是否是很簡單呢,快去操做下吧!

參考自:http://www.cnblogs.com/jecyhw/p/4906990.html

相關文章
相關標籤/搜索