当前位置: 首页 > 工具软件 > remix-ide > 使用案例 >

本地运行remix-ide

师博
2023-12-01

使用如下命令下载、安装、启动本地 Remix ide

# 安装nx依赖
npm install -g @nrwl/cli
# 下载ide源码项目
git clone https://github.com/ethereum/remix-project.git
# 构建项目
cd remix-project
npm install
nx build remix-ide --with-deps
# 启动服务
nx serve

然后,访问网页:http://127.0.0.1:8080

 类似资料: