Question 9 of 10Pro Only
What are the principles of RESTful API design? How would you structure a REST API in Express for a resource like "users"?
Sample answer preview
## REST Principles **REST** (Representational State Transfer) is an architectural style with these constraints: 1. **Client-Server**: Separation of concerns 2. **Stateless**: Each request contains all information needed 3.
RESTAPI designHTTP methodsstatus codesCRUDresources