Skip to content

Commit a0acff7

Browse files
authored
Update README.md
1 parent 7dcf6bd commit a0acff7

File tree

1 file changed

+8
-8
lines changed

1 file changed

+8
-8
lines changed

README.md

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -16,15 +16,15 @@ The main focus will be to create a maintainable and highly testable architecture
1616
<br>
1717
Following are the features of this project:
1818
* **This backend in written in Typescript**: The type safety at build time and having intellisense for it in the IDE like vscode is unparallel to productivity. We have found production bug reduced to significant amount, since most of the code vulnarabilties are identified during the build phase itself.
19-
* **Separation of concern principle is applied**: Each component has been given a particular role. The role of the components are mutually excllusive. This makes the project easy to be unit tested.
20-
* **Feature enpasulation is adopted**: The files or components those are related to a particular feature has been grouped together unless that components is required in multiple features.This enhances the ability to share code across projects.
21-
* **Centralised Error handling is done**: We have created a framework where all the error is handled centrally. This reduces the abiguity in the developement when the project grows larger.
19+
* **Separation of concern principle is applied**: Each component has been given a particular role. The role of the components are mutually exclusive. This makes the project easy to be unit tested.
20+
* **Feature enpasulation is adopted**: The files or components those are related to a particular feature has been grouped together unless that components is required in multiple features. This enhances the ability to share code across projects.
21+
* **Centralised Error handling is done**: We have created a framework where all the errors are handled centrally. This reduces the ambiguity in the developement when the project grow larger.
2222
* **Centralised Response handling is done**: Similar to Error handling we have response handling framework. This makes it very convinient to apply a common API response pattern.
2323
* **Mongodb is used through Mongoose**: Mongodb really fits very well to the nodejs application. Being nosql, fast, and scalable makes it ideal for the modern web applications.
2424
* **Async execution is adopted**: We have used async/await for the promises and made sure to use non blocking version of all the functions with few exceptions.
25-
* **Docker compose has been configured**: We Dockerfile has been created to assist in easy deployability without setup and much configurations.
25+
* **Docker compose has been configured**: We have created the Dockerfile to provide the easy deployability without any setup and configurations.
2626
* **Unit test is favoured**: The tests has been written to test the functions and routes without the need of the database server. Integration tests has also been done but unit test is favoured.
27-
* **A pure backend project**: We have experienced that when a backend is developed clubed with a frontend then in the future it become really difficult to scale. We would want to use a single backend project to server many websites and mobile apps.
27+
* **A pure backend project**: We have experienced that when a backend is developed clubed with a frontend then in the future it become really difficult to scale. We would want to create a separate backend project that servers many websites and mobile apps.
2828

2929
## 3RE Architecture: Router, RouteHandler, ResponseHandler, ErrorHandler
3030
<p align="center">
@@ -60,8 +60,8 @@ Following are the features of this project:
6060
* Install Docker and Docker Compose. [Find Instructions Here](https://docs.docker.com/install/).
6161
* Execute `docker-compose up -d` in terminal from the repo directory.
6262
* You will be able to access the api from http://localhost:3000
63-
* *If having any issue* then make sure 3000 port is not occupied else update a different port in **.env** file.
64-
* *If having any issue* then make sure 27017 port is not occupied else update a different port in **.env** file.
63+
* *If having any issue* then make sure 3000 port is not occupied else provide a different port in **.env** file.
64+
* *If having any issue* then make sure 27017 port is not occupied else provide a different port in **.env** file.
6565
* Run The Tests
6666
* Install nodejs and npm on your local machine.
6767
* From the root of the project execute in terminal `npm install`.
@@ -77,7 +77,7 @@ Following are the features of this project:
7777
* To run the tests execute `npm test`.
7878

7979
## Explore Online Tutorials and Courses To Learn More by AfterAcademy
80-
* [Backend Tutorial](https://afteracademy.com/blogs/backend) - All Free Tutorials by AfterAcademy
80+
* [Backend Tutorial](https://afteracademy.com/blogs/backend) - All free tutorials by AfterAcademy
8181
* [Online Courses for Backend](https://afteracademy.com/courses/backend) - Master the skills that companies love to hire.
8282

8383
## Learn Backend Development From Our Videos

0 commit comments

Comments
 (0)