Line 38 of server.js
You are allowing the POST method to be used when this is deprecated in the coffee protocol.
Quote https://tools.ietf.org/html/rfc2324:
A coffee pot server MUST accept both the BREW and POST method
equivalently. However, the use of POST for causing actions to happen
is deprecated.
You should probably give a warning saying this is deprecated if used.
Line 38 of server.js
You are allowing the POST method to be used when this is deprecated in the coffee protocol.
Quote https://tools.ietf.org/html/rfc2324:
You should probably give a warning saying this is deprecated if used.