本教程中的服务器基于
express
,30 分钟速通 Graphql
- 克隆库:
git clone https://github.com/zhouyuexie/learn-graphql
- 安装依赖:
cd learn-graphql && npm install
- 运行:
运行前可以通过设定环境变量PORT
来修改端口号(可跳过):
# Windows cmd
set PORT=8080
# Windows powershell
$env:PORT=8080
# Linux
export PORT=8080
# MacOS
export PORT=8080
然后,通过以下命令运行:
npm start
# 或者
npm run dev
现在打开你的浏览器输入http://localhost:12580/graphql
,或者点击这里. 如果改了端口号请自行打开对应链接.
然后按以下顺序开始学习吧!