node.js - Can't see data in my local mongodb but there is no errors and login works fine -
i using nodejs , created login system using passport. here user shema: var userschema = mongoose.schema({ local: { username: string, password: string } }); use url connect local mongodb: module.exports = { 'url' : 'mongodb://localhost:27017/loginuser' } thing when register user , try login , logout works when try find loginuser database using mongo shell can't see @ all. can guide me why?
Comments
Post a Comment