#Node.js 오늘은 유저의 프로필 데이터를 변경하는 작업을 진행해보았다. userRouter.post(routes.editProfile, onlyPrivate, uploadAvatar, postEditProfile); export const postEditProfile = async (req, res) => { const { body: { name, email }, file, user: { _id } } = req; try { const user = await User.findById(_id) await User.findByIdAndUpdate(_id, { name, email, avatarUrl: file ? file.path : req.user.avatarUrl }); await user.save..