DEV Community

Discussion on: It's not about Web Components vs. React

Collapse
 
drewstaylor profile image
Drew Taylor • Edited

Yes, almost all of the major UI web component based frameworks have this. A couple examples might be:

Angular:

npm install -g @angular/cli
ng new my-app

Vue:

npm install -g @vue/cli
vue create my-vueapp

*EDIT: However, as Steve suggests, you shouldn't bloat your project unnecessarily with an application framework if all you need is just one or two simple web components.