Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Snowpack with Angular? [closed]

I've been going through the snowpack introduction and got really excited about the tool. Unfortunately, at the end of documentation I could not find Angular among the supported libraries. However, Snowpack seemed to be quite flexible so I wonder if someone has experimented with putting together a Snowpack/Angular setup.

like image 666
Dávid Konkoly Avatar asked Jun 06 '20 20:06

Dávid Konkoly


1 Answers

First, I'd like to just say that Angular is not a library, it's a framework and this might be the reason why it's not supported.

I have only just read about Snowpack, so I am not an expert (probably know less about it than you), but since Angular is a framework and gets delivered to the client as separate module files, maybe it's because of this. When a change to a couple of components are made in Angular, a change needs to be done for all components in the same JS file.

like image 101
Payerl Avatar answered Oct 22 '22 17:10

Payerl