Ошибка ответа конечной точки API и маршрутизация сервера
Я пытался раздел комментариев (для реализации ответа на конечную точку '/ api'.) Здесь файл userRootAPI.js
const { usersAPI } = require('./users');
module.exports = (database) => {
// TODO: you need to implement the response to the '/api' endpoint.
router.use('/user', usersAPI);
return router;
};
другой rootAPIfile
const apiRouter = require('./components/userRootAPI');
const app = express();
app.use(bodyParser.json());
app.use('/api', apiRouter);
// TODO: you need to implement server routing!!
module.exports.app = app;
Здесь файл server.js
const { app } = require('./rootAPI');
const PORT = process.env.PORT || 3002;
app.listen(PORT, () => {
console.info(`Server is listening on PORT : ${PORT}`);
});
Мне нужен ответ '/ api' и маршрутизация сервера