Skip to content

Latest commit

 

History

History
 
 

basic_structure

Folders and files

NameName
Last commit message
Last commit date

parent directory

..
 
 
 
 
 
 
 
 
 
 

Different approaches to defining router and handler

  • default is a plain function way and is more preferable.
  • dsl is DSL (domain specific language) - less code footprint.
  • like_django follows Django pattern in terms of url handling
  • like_expressjs is using anonymous handler (more on that: anon_handler)