Back to Json Server

JSON Server

views/index.html

0.17.4435 B
Original Source

<% const resources = Object.entries(it.data ?? {}); %> Resources

<% if (resources.length === 0) { %> No resources in db.json. <% } else { %> <% resources.forEach(function([name, value]) { const isCollection = Array.isArray(value); %> /<%= name %> <% if (isCollection) { %> <%= value.length %> items <% } else { %> object <% } %> <% }) %> <% } %>