美文网首页
[简易教程]remix连接至本地文件夹

[简易教程]remix连接至本地文件夹

作者: 张亚伦 | 来源:发表于2021-06-28 15:08 被阅读0次

    汇总:

    1. 安装remixd
    2. 启动remixd
    3. 建立连接

    官网教程
    Remix IDE 搭配插件remixd(cli/npm)后即可访问本地文件,具体如下:

    1. 安装remixd
      npm install -g @remix-project/remixd

    2. 启动remixd
      remixd -s <absolute-path-to-the-shared-folder> --remix-ide <your-remix-ide-URL-instance>

    只读模式标签--read-only

    示例:

    E:\Work\UDPN\trunk\3.SourceCode\solidity\udpnCC\contracts\core>remixd -s E:\Work\UDPN\trunk\3.SourceCode\solidity\udpnCC\contracts\core --remix-ide https://remix.ethereum.org
    [INFO] you are using the latest version 0.4.1
    [WARN] You may now only use IDE at https://remix.ethereum.org to connect to that instance
    [WARN] Any application that runs on your computer can potentially read from and write to all files in the directory.
    [WARN] Symbolic links are not forwarded to Remix IDE
    
    [INFO] Mon Jun 28 2021 14:44:57 GMT+0800 (中国标准时间) remixd is listening on 127.0.0.1:65520
    setup notifications for E:\Work\UDPN\trunk\3.SourceCode\solidity\udpnCC\contracts\core
    
    1. 建立连接

    选择‘-connect to localhost-’:

    image.png

    点击‘connect’:

    image.png

    成功如下:

    image.png

    相关文章

      网友评论

          本文标题:[简易教程]remix连接至本地文件夹

          本文链接:https://www.haomeiwen.com/subject/aymqultx.html