It is a small but complete CRUD surface — read all, read by author, add, reword, delete. The store behind it is the project's own mock API, so what you put in lives with the server rather than in a database of yours.
A CRUD server over a collection of quotations. Each phrase has an id, its text and an author; storage is a mock API bundled with the project rather than a database you point it at.
- Every phrase in the collection, returned as a list
- One phrase fetched by its id
- Phrases found by author name
- A new phrase created with its text and author
- The text of an existing phrase updated in place
- A phrase deleted by id
Node.js and a local build: clone the repository, npm install, npm run build, then point your client at the compiled build/index.js. No account and no key. The documentation and example prompts are in Spanish.
Build from source — clone the repository and build it, then point your client at the binary
