ReactJS 部署应用程序错误无法复制到剪贴板:命令失败:xsel --clipboard --input

IT技术 javascript node.js reactjs ubuntu deployment
2021-05-26 15:18:05

我正在尝试在我的Ubuntu 16.04服务器中部署一个ReactJS应用程序,但是当我执行命令时:

serve -s build

这是我的package.json文件:

{
  "name": "client",
  "version": "0.1.0",
  "private": true,
  "dependencies": {
    "bootstrap": "^4.3.1",
    "history": "^4.9.0",
    "jquery": "^3.4.0",
    "moment": "^2.24.0",
    "popper.js": "^1.15.0",
    "react": "^16.8.6",
    "react-dom": "^16.8.6",
    "react-router-dom": "^5.0.0",
    "react-scripts": "2.1.8"
  },
  "scripts": {
    "start": "react-scripts start",
    "build": "react-scripts build",
    "test": "react-scripts test",
    "eject": "react-scripts eject"
  },
  "eslintConfig": {
    "extends": "react-app"
  },
  "browserslist": [
    ">0.2%",
    "not dead",
    "not ie <= 11",
    "not op_mini all"
  ]
}

我收到此错误:

ERROR: Cannot copy to clipboard: Command failed: xsel --clipboard --input
xsel: Can't open display: (null)
: Inappropriate ioctl for device

   ┌──────────────────────────────────────────────────┐
   │                                                  │
   │   Serving!                                       │
   │                                                  │
   │   - Local:            http://localhost:5000      │
   │   - On Your Network:  http://server_IP:5000   │
   │                                                  │
   └──────────────────────────────────────────────────┘

但该应用程序未加载且无法在端口访问5000

我怎么能弄清楚这一点?

3个回答

我遇到了同样的问题,我通过添加“-n”选项来解决它。

"-n, --no-clipboard 不要将本地地址复制到剪贴板"

我通过将nginx服务器直接指向/build我的ReactJS项目文件夹,特别是index.html文件避免这个问题

这样我就没有问题中描述的问题,因为我不再使用serve -s build命令执行服务

  • 这与剪贴板module有关,尝试使用 npm uninstall “在 package.json 中查找剪贴板module名称”将其从您的 APP 中删除,然后尝试重建,看看会发生什么?

  • 如果问题仍然存在,请尝试删除您的 node_modules 并重新安装