当我输入 'npm start' 将我的网站与本地主机连接时出错
error when i type 'npm start' to conect my website with localhost
我正在尝试启动网页,但是当我在终端(在文件夹 proyect 中)键入 npm start 时显示错误。
npm ERR! syscall open
npm ERR! path /home/dmarin/package.json
npm ERR! errno -2
npm ERR! enoent ENOENT: no such file or directory, open '/home/dmarin/package.json'
npm ERR! enoent This is related to npm not being able to find a file.
npm ERR! enoent
npm ERR! A complete log of this run can be found in:
npm ERR! /home/dmarin/.npm/_logs/2020-02-20T16_05_39_782Z-debug.log
我连接到 localhost 中的 mysql 数据库,使用 php 管理员和 apache.Your 帮助将非常完整。
如果你想使用 npm 启动你的服务器,然后它将提供网页,那么你需要做 npm init
,它将创建 pacakage.json
它将看起来像这样:
> npm init --yes
Wrote to /home/ag_dubs/my_package/package.json:
{
"name": "my_package",
"description": "",
"version": "1.0.0",
"main": "index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1"
},
"repository": {
"type": "git",
"url": "https://github.com/ashleygwilliams/my_package.git"
},
"keywords": [],
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/ashleygwilliams/my_package/issues"
},
"homepage": "https://github.com/ashleygwilliams/my_package"
}
npm start 查找 pacakage.json 文件或 pacakage-lock.json 文件。
并将启动您在 pacakage.json.
中提到的文件
在上面的文件中,它将查找:
"main": "index.js"
所以您需要做的就是将 index.js 替换为您想要的网页。
我正在尝试启动网页,但是当我在终端(在文件夹 proyect 中)键入 npm start 时显示错误。
npm ERR! syscall open
npm ERR! path /home/dmarin/package.json
npm ERR! errno -2
npm ERR! enoent ENOENT: no such file or directory, open '/home/dmarin/package.json'
npm ERR! enoent This is related to npm not being able to find a file.
npm ERR! enoent
npm ERR! A complete log of this run can be found in:
npm ERR! /home/dmarin/.npm/_logs/2020-02-20T16_05_39_782Z-debug.log
我连接到 localhost 中的 mysql 数据库,使用 php 管理员和 apache.Your 帮助将非常完整。
如果你想使用 npm 启动你的服务器,然后它将提供网页,那么你需要做 npm init
,它将创建 pacakage.json
它将看起来像这样:
> npm init --yes
Wrote to /home/ag_dubs/my_package/package.json:
{
"name": "my_package",
"description": "",
"version": "1.0.0",
"main": "index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1"
},
"repository": {
"type": "git",
"url": "https://github.com/ashleygwilliams/my_package.git"
},
"keywords": [],
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/ashleygwilliams/my_package/issues"
},
"homepage": "https://github.com/ashleygwilliams/my_package"
}
npm start 查找 pacakage.json 文件或 pacakage-lock.json 文件。 并将启动您在 pacakage.json.
中提到的文件在上面的文件中,它将查找:
"main": "index.js"
所以您需要做的就是将 index.js 替换为您想要的网页。