DEV Community

Discussion on: Building a NodeJS Web App Using PassportJS for Authentication

Collapse
 
am8zing profile image
am8zing

Hi there,
anyone getting this?

Cannot GET /[object%20Object]

Collapse
 
am8zing profile image
am8zing • Edited

FIX:
bcrypt-nodejs is no longer supported. npmjs.com/package/bcrypt-nodejs
make sure do get the latest version via npm called bcrypt or bcryptjs.

In user.js just change

var bcrypt = require("bcrypt-nodejs");

to

var bcrypt = require("bcryptjs");