This project is a Course Review Application built using TypeScript, Express.js, and MongoDB. It provides a platform to manage courses, categories, and reviews. The application follows a specific technology stack and includes error handling, validation, and various endpoints for creating, updating, and retrieving data.
- Technology Stack
- Models
- Folder Structure
- Dependencies
- Error Handling
- Endpoints
- How to Run the Project
- How to Contribute
- About the Author
- Acknowledgements
- License
- Programming Language: TypeScript
- Web Framework: Express.js
- Object Data Modeling (ODM): Mongoose for MongoDB
- Validation Library: Zod
- Deployment: Vercel
- _id (Object ID): A distinctive identifier generated by MongoDB.
- title (String): A unique title of the course.
- instructor (String): The instructor of the course.
- categoryId (Object ID): A reference to the category collection.
- price (Number): The price of the course.
- tags (Array of Object): An array of objects with "name" (string) and "isDeleted" (boolean) properties.
- startDate (String): The start date of the course.
- endDate (String): The end date of the course.
- language (String): The language in which the course is conducted.
- provider (String): The provider of the course.
- durationInWeeks (Integer): The overall duration of the course in weeks.
- details (Object):
- level (string): e.g., Beginner, Intermediate, Advanced.
- description (string): Detailed description of the course.
- _id (Object ID): A distinctive identifier generated by MongoDB.
- name (String): A unique name of the category.
- _id (Object ID): A distinctive identifier generated by MongoDB.
- courseId (Object ID): A reference to the course collection.
- rating (Number): Rating, which falls within the range of 1 to 5.
- review (String): The comment or review text provided by the user.
- src/: Contains all the source code files.
- dist/: Contains all the compiled and minified source code files.
- cors: 2.8.5
- dotenv: 16.3.1
- express: 4.18.2
- http-status: 1.7.3
- mongoose: 8.0.3
- zod: 3.22.4
The application implements proper error handling throughout, using a global error handling middleware. It provides appropriate error responses with status codes and error messages. The error response object includes information about the error type, a concise error message, detailed error information, and a stack trace for debugging purposes.
-
Create a Course - POST
/api/course
- send a request in JSON format with the mentioned fields in the request body
- returns created course with success message
-
Get Paginated and Filtered Courses - GET
/api/courses
Query Parameters
page
: (Optional) Specifies the page number for paginated results. Default is 1.limit
: (Optional) Sets the number of items per page. Default is 10.sortBy
: (Optional) Specifies the field by which the results should be sorted. Applicable values are:title
,price
,startDate
,endDate
,language
,durationInWeeks
,provider
,level
.sortOrder
: (Optional) Determines the sorting order, eitherasc
(ascending) ordesc
(descending).minPrice
,maxPrice
: (Optional) Filters results by a price range.tags
: (Optional) Filters results by the name of a specific tag.startDate
,endDate
: (Optional) Filters results by a date range.language
: (Optional) Filters results by the language of the course.provider
: (Optional) Filters results by the course provider.durationInWeeks
: (Optional) Filters results by the duration of the course in weeks.level
: (Optional) Filters results by the difficulty level of the course.
-
Create a Category - POST
/api/categories
- send a request in JSON format with the mentioned fields in the request body
- returns created category with success message
-
Get All Categories - GET
/api/categories
- returns all categories with success message
-
Create a Review for a Course - POST
/api/reviews
- send a request in JSON format with the mentioned fields in the request body
- returns created review with success message
-
Update a Course - PUT
/api/courses/:courseId
- it supports partial update with dynamic update
- send a request in JSON format with the mentioned fields in the request body
- returns updated course with success message
-
Get a Course with Reviews - GET
/api/courses/:courseId/reviews
- returns the course with its reviews and success message
-
Get the Best Course by Average Rating - GET
/api/course/best
- returns the best course with success message and the average rating with total number of reviews
- Node.js v20 or later
- MongoDB v5.0 or later
- Mongoose v7.0 or later
-
Clone the repository
git clone https://github.com/MuzakkirHossainMinhaz/course-review.git
-
Navigate to the project directory
cd course-review
-
Install dependencies
`npm install` or `npm i`
-
Setup Environment Variables
// create a `.env` file in the root directory and add the following variables PORT=5000 or as_your_wish NODE_ENV=DEVELOPMENT DATABASE_URL=your_mongodb_url
-
Start the server
npm run start:dev
-
Open your browser and navigate to http://localhost:5000
We welcome contributions! If you want to contribute to this project, please follow these steps:
- Fork the repository.
- Create a new branch for your feature or bug fix.
- Make your changes and commit them.
- Push your changes to your fork.
- Submit a pull request to the
main
branch of the original repository.
This project is licensed under the MIT License. See the LICENSE file for details.