Skip to content

Generic Repository Pattern, Singleton, Multi-layer Architecture Pattern - Examples

Notifications You must be signed in to change notification settings

ErickWendel/NodeJSWithTypescript

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

43 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Learning.NodeJSWithTypescript

For learning typescript, this project describes the application, at Spartans and Heroes as users of system. The Spartans describes amount of death peoples and Heroes amount of saved peoples.

Patterns and Principles in this project:

  • Generic Repository Pattern
  • Singleton Pattern
  • Multi-layer Architecture Pattern

Tools:

  • NodeJS
  • TypeScript
  • ExpressJS
  • MongoDB
  • Mongoose
  • GulpJS
  • VSCode Task Runners

Convention Refs:
Coding guidelines Typescript - Microsoft

Pré Requisites:

  • NodeJS
  • MongoDB
  • VSCode

Run:
> npm install

if not executing from VSCode:
> gulp

REST API Definitions:

CREATE
> METHOD: POST
> PARAMS: {"name":"Leonidas King","amountPeopleKilled":120,"folk":"agoge"}
> URL: http://localhost:5000/spartans
> RETURN: success or error


> METHOD: POST
> PARAMS: {"name":"Goku God","power":"sayan","amountPeopleSaved":2000 }
> URL: http://localhost:5000/heroes
> RETURN: success or error


RETRIEVE
> METHOD: GET
> URL: http://localhost:5000/heroes/
> RETURN: [{"name":"Goku God","power":"sayan","amountPeopleSaved":2000 }]


> METHOD: GET
> URL: http://localhost:5000/spartans/
> RETURN: [{"name":"Leonidas King","amountPeopleKilled":120,"folk":"agoge"}]


GET ONE
> METHOD: GET
> URL: http://localhost:5000/heroes/56800b6b01c67c194e603e23
> RETURN: {"name":"Goku God","power":"sayan","amountPeopleSaved":2000 }
> OBSERVATIONS: for this request, use item id in url (56800b6b01c67c194e603e23)

> METHOD: GET
> URL: http://localhost:5000/spartans/568564361cc5056325f52c3c
> RETURN: {"name":"Leonidas King","amountPeopleKilled":120,"folk":"agoge"}
> OBSERVATIONS: for this request, use item id in url (568564361cc5056325f52c3c)

UPDATE
> METHOD: PUT
> PARAMS: {"name":"UPDATED","power":"sayan","amountPeopleSaved":200 }
> URL: http://localhost:5000/heroes/56800afbf34739a94da174f0
> RETURN: success or error
> OBSERVATIONS: for this request, use item id in url (56800afbf34739a94da174f0)

> METHOD: PUT
> PARAMS: {"name":"UPDATED","amountPeopleKilled":2,"folk":"agoge" }
> URL: http://localhost:5000/heroes/56800afbf34739a94da174f0
> RETURN: success or error
> OBSERVATIONS: for this request, use item id in url (56800afbf34739a94da174f0)

DELETE
> METHOD: DELETE
> URL: http://localhost:5000/heroes/56800afbf34739a94da174f0
> RETURN: success or error


> METHOD: DELETE
> URL: http://localhost:5000/spartans/568564361cc5056325f52c3c
> RETURN: success or error
> OBSERVATIONS: for this request, use item id in url (568564361cc5056325f52c3c)

About

Generic Repository Pattern, Singleton, Multi-layer Architecture Pattern - Examples

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published