UNPKG

couchdb-compile

Version:

Build CouchDB documents from fs.

15 lines (14 loc) 243 B
function (head, req) { var row start({ headers: { 'Content-Type': 'text/html' } }) send('<!DOCTYPE html><html lang=en>') send('<ol>') while(row = getRow()) { send('<li>' + row.key + '</li>') } send('</ol>') }