gpt4 book ai didi

node.js - Nodemon index.js

转载 作者:可可西里 更新时间:2023-11-01 09:57:00 26 4
gpt4 key购买 nike

我是 nodemon 的新手。在 12:01 https://www.youtube.com/watch?v=eB9Fq9I5ocs 按照此视频中的步骤操作后,尝试使用 nodemon 运行我的应用程序时出现以下错误: enter image description here

这是 APP.JS 文件:

var express = require('express');
var app = express();
var bodyParser = require('body-parser');
var mongoose = require('mongoose');

// Connect to Mongoose
mongoose.connect('mongodb://localhost/ChatbotService')
var db = mongoose.connection;

app.get('/', function(req, res){
res.send('Hola4');
});

app.listen(8601);
console.log('Running on port 8601...');

这是 PACKAGE.JSON 文件:

{
"name": "chatbot",
"version": "1.0.0",
"description": "chatbot app",
"main": "index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1"
},
"dependencies": {
"express": "*",
"body-parser": "*",
"mongoose": "*"
},
"author": "Chris",
"license": "ISC",
"devDependencies": {
"nodemon": "^1.11.0"
}
}

我需要做什么才能让 nodemon 找到 index.js 模块?

谢谢

最佳答案

问题是您的主文件名为 app.js,但在 package.json 文件中您的主文件是 index.js。您需要更改它,以便 nodemon 知道要查找的文件:

"main": "app.js",

关于node.js - Nodemon index.js,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/42190362/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com