我已经下载了 ethereum blockchain project build in react,solidity,truffle
I have downloaded the ethereum blockchain project build in react,solidity,truffle
现在 运行 我的 ubuntu 机器上没有了。当我 运行 npm start
命令时,它说缺少脚本启动。有什么方法可以运行下载的项目吗?
在您的 package.json
文件中,勾选 scripts
属性:
"scripts": {
"clean": "rimraf build/*",
"copy-assets": "ts-node src/tools/copyAssets",
"tsc": " tsc",
"build": "npm-run-all clean tsc copy-assets",
"dev": "nodemon --watch src -e ts,ejs,css --exec npm run dev:start",
"dev:start": "npm-run-all build start",
},
看起来 start
脚本不存在。相反 运行 来自脚本部分的适当的。
现在 运行 我的 ubuntu 机器上没有了。当我 运行 npm start
命令时,它说缺少脚本启动。有什么方法可以运行下载的项目吗?
在您的 package.json
文件中,勾选 scripts
属性:
"scripts": {
"clean": "rimraf build/*",
"copy-assets": "ts-node src/tools/copyAssets",
"tsc": " tsc",
"build": "npm-run-all clean tsc copy-assets",
"dev": "nodemon --watch src -e ts,ejs,css --exec npm run dev:start",
"dev:start": "npm-run-all build start",
},
看起来 start
脚本不存在。相反 运行 来自脚本部分的适当的。