Файл индекса. js имеет следующий код:
const express = require('express');
const cors = require('cors');
const bodyParser = require('body-parser');
const morgan = require('morgan');
const app = express();
app.use(morgan('tiny'));
app.use(cors());
app.use(bodyParser.json());
app.get('/', (req, res) => {
res.json({
message: 'Welcome!'
});
});
const port = process.env.PORT || 3000;
app.listen(port, () => {
console.log(`Listening on port ${port}...`);
});
И я отредактировал пакет. json
"main": "index.js",
"scripts": {
"start": "node index.js"
},
Версии зависимостей:
"dependencies": {
"body-parser": "^1.19.0",
"cors": "^2.8.5",
"express": "^4.17.1",
"morgan": "^1.10.0"
}
Когда я запускаю npm start
на терминале, ошибка выглядит следующим образом:
npm ERR! code ENOENT
npm ERR! syscall open
npm ERR! path E:\.....\package.json
npm ERR! errno -4058
npm ERR! enoent ENOENT: no such file or directory, open 'E:\......\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! C:\Users\Mamun\AppData\Roaming\npm-cache\_logs\2020-04-15T10_03_09_445Z-debug.log
Что я могу сделать? Пожалуйста помоги. Заранее спасибо!