Skip to content

Backend side for the Angular chat app. Built with Node, Express, Mongoose, SocketIO and a bunch of other packages

License

Notifications You must be signed in to change notification settings

Bitcoinera/chat-app-backend

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

72 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Errors encountered:

  1. Joi 'ValidationError': It was because I was sending 'user' as an Object value when 'user' is by itself already an Object. I was doing:

    Joi.validate( {user}, UserValidator, (err) => {
    

    when it should be:

    Joi.validate( user, UserValidator, (err) => {
    

About

Backend side for the Angular chat app. Built with Node, Express, Mongoose, SocketIO and a bunch of other packages

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • JavaScript 100.0%