Tell us what’s happening:
Describe your issue in detail here.
it keeps saying helmet.frameguard() middleware should be mounted correctly and i did what was in the instruction,please what is wrong? Your project link(s)
One thing I did different locally was to merge the changes of the outstanding PR on the boilerplate, so it could be a difference in the package-lock.json?
@ochebarnnas12345 As a test, delete your node_modules folder with rm -rf node_modules and delete package-lock.json. Then run npm install and run the app again before submitting your live project url.
NOTE: You do not need the extra app.use(helmet.frameguard()).
Pretty sure it’s the caret in front of the version number ^3.21.3 in the package.json that is making it install version 3.23.3 which likely also updated the lock file. If you fork it even if you correct the version it will still install 3.23.3
@ochebarnnas12345 you can still follow @RandellDawson suggestion but you have to also correct the version in the package.json to not have a ^ in front of it.