用express搭建乙個小遊戲伺服器環境

2021-10-20 01:21:43 字數 1201 閱讀 1649

小遊戲主題部分採用到的js庫為:jquery,因為涉及到比較多的dom操作。主要做法為:html+css+js。主要資料夾為index.html和paoku,paoku資料夾裡有images js css

涉及到請求介面,所以需要搭建乙個伺服器環境,詳細操作文件:

一、步驟

1、npm install -g express

2、npm install -g express-generator

3、express helloworld

4、cd helloworld

5、npm install

6、npm start

然後新建立的helloworld就已經執行在3000埠上,訪問http://localhost:3000/就看到熟悉的頁面了

二、修改檔案拓展名,詳細操作文件

var ejs =

require

('ejs');

engine

('html'

,ejs.__express)

;set

('view engine'

,'html'

);

2、設定具體的 執行檔案 .ejs 字尾全部更改為 .html 字尾。

三、將小遊戲檔案放到專案裡,保持index.html與所引入的樣式js相對目錄不變

將小遊戲 index.html 放到 helloworld\views 目錄裡

將小遊戲 paoku 放到 helloworld\public 目錄裡

四、用axios請求介面,在query.js做一些axios配置

五、由於介面網域名稱處理跨域,訪問時需要將localhost改為192.168.5.112 埠改為8080

六、重新執行環境

遊戲頁面出來了,介面也能跑通

用python編寫乙個小遊戲

1.隨機生成兩個數字 1 1000 在控制台中隨機獲取兩個數字相加 如果使用者輸入正確得10分,否則扣10分。總共5道題,最後輸出得分 import random grade 0for i in range 5 num1 random.randint 1,100 num2 random.randin...

怎麼用express搭建乙個伺服器

const express require express const path require path art template模板引擎的配置 debug process.env.node env production 路由的掛載 const router require router 埠設定 ...

用介面,寫乙個簡單的小遊戲

role介面 角色攻擊跟修煉 public inte ce role magicstick 介面 法師用的法杖 public inte ce magicstick weapon 介面 戰士適用的 public inte ce weapon 法師所使用的兩種法杖類 public class green...