REST API design with express
API Naming
Use nouns in plural for resources, avoid verbs
/users or /products for collection resources and /users/{id} for singleton resources
Use hyphens when there is need to separate words
/user-management
Nesting e.g playlists belongin...
discovertech.hashnode.dev4 min read