A messenger application that uses MERN Stack technologies. Multiple users should be able to communicate in real-time.
-
MongoDB/Mongoose
-
Express
-
React
-
Node
-
CSS
-
JavaScript
-
HTML
# | Action | URL | HTTP Verb | Mongoose Method |
---|---|---|---|---|
------------- | ------------- | --- | --- | --- |
1 | Index | /shows | Get | Show.find |
2 | Create | /api/chats/ | POST | Chat.create(req.body) |
3 | Update | /api/chats/:id | PUT | Chat.findByIdAndUpdate() |
4 | Delete | /api/chats/:id | Delete | Chat.findByIdAndRemove() |
# | Action | URL | HTTP Verb | Mongoose Method |
---|---|---|---|---|
------------- | ------------- | --- | --- | --- |
1 | SignUp | /api/users | POST | User.find |
2 | Login | /api/users/login | POST | User.findOne(req.body) |
- JSON web token functionality
- Would like to create a multi user chat app