DEV Community

Discussion on: Are there any new or upcoming browser APIs you are keeping an eye on?

Collapse
 
bennypowers profile image
Benny Powers 🇮🇱🇨🇦 • Edited

Template Instantiation will provide another piece of the puzzle for web components.

Imagine something like this fake pseudocode without framework or library dependencies

<template id="user-tpl" type="repeat">
  <li>
    <article>
      <h1>{{name}}</h1>
      <img src="{{picture}}" alt="{{alt}}"/>
      <p>{{description}}</p>
    </article>
  </li>
<template>
Enter fullscreen mode Exit fullscreen mode
document.getElementById{"user-tpl")
  .instantiate(users, someUl)
Enter fullscreen mode Exit fullscreen mode

See github.com/w3c/webcomponents/blob/... for real examples.

Collapse
 
nektro profile image
Meghan (she/her)

Amazing! Been waiting for this.