middleware/
folder : functions that execute during the lifecycle of a request to the Express server, containesauth
function for authentification using JWT .models/
folder : mongoose models provide an interface to the MongoDB database for creating, querying, updating and deleting documents.routes/
folder : application’s endpoints (URIs) to respond to requests, contains a RESTful API of the React Conf.database.js
file: handles the connection to MongoDB.server.js
file: entry point, bootstraps the RESTful API Server.
- This repo serves as the RESTful API server to the Dummy React Conf Website and Dummy React Conf Dashboard
- the data is stored in a MongoDB Database, and Mongoose is chosen as the ODM.
- Node.js
- Express.js
- MongoDB with Mongoose
- JSON Web Token