complete-node-bootcamp icon indicating copy to clipboard operation
complete-node-bootcamp copied to clipboard

Starter files, final projects and FAQ for my Complete Node.js Bootcamp

Results 143 complete-node-bootcamp issues
Sort by recently updated
recently updated
newest added

How to convert this .pug to .html if user a.nav__el.nav__el--logout Log out a.nav__el(href='/me') img.nav__user-img(src=`/img/users/${user.photo}` alt=`Photo of ${user.name}`) span= user.name.split(' ')[0] else a.nav__el(href='/login') Log in a.nav__el.nav__el--cta(href='#') Sign up

Was implementing the average ratings part, but get this error when updating or deleting the review. Code is almost similar as in the course. Plaese help! ```json { "status": "error",...

It seems like Express removed the name property inside the err object. Can anyone confirm this? This is how it looks like on my Postman ``` { "status": "error", "error":...

My VScode can not detect the type of 'query' and returned 'any'. ![截屏2022-05-15 下午4 46 17](https://user-images.githubusercontent.com/22601026/168466092-e9e601a6-8dd1-4a7b-b7ca-5318498d7b7c.png) However, the VScode at the Udemy Course can detect the type and returned 'DocumentQuery'...

``` block append head script(src='https://api.mapbox.com/mapbox-gl-js/v1.12.0/mapbox-gl.js') link(href='https://api.mapbox.com/mapbox-gl-js/v1.12.0/mapbox-gl.css' rel='stylesheet') ``` The result of a run is: _Refused to load the script 'https://api.mapbox.com/mapbox-gl-js/v1.12.0/mapbox-gl.js' because it violates the following Content Security Policy directive: "script-src...

There is no need for this route in **userController.js** ```js exports.createUser = (req, res) => { res.status(500).json({ status: 'error', message: 'This route is not yet defined! Please use /signup instead!',...

In "forgotPassword" functionality when the link to resetPassword is being created and send to user's email (const resetURL = `${req.protocol}://${req.get('host' )}/api/v1/users/resetPassword/${resetToken}`;) the host header is being dynamically selected from the...