DEV Community

[Comment from a deleted post]
Collapse
 
atomzwieback profile image
Atomzwieback

It looks very cool, but i take a look at their homepage and saw an example where css html and js is all put in a ".stelve" file and thats the point i dont like because it seems kinda confusing and not clear to me. Also i like more "component" based design where a component has all stuff splitted in their own files and all result together in a "component".

Collapse
 
hanna profile image
Hanna

That's the main point of the template section of the article :p

Collapse
 
atomzwieback profile image
Atomzwieback

then may i should invest more than 5 minutes and take a closer look at the site

 
hanna profile image
Hanna

I personally prefer all the stuff in the same file, but that's just more of a preference

 
atomzwieback profile image
Atomzwieback

Its ok in a small project but if youre working on large enterprise software which produces a lot of income, you want the code base as understandable as possible in less time.

 
hanna profile image
Hanna

I find them equally understandable, but not everyone does.

 
pabloabc profile image
Pablo Berganza • Edited

Isn't that the objective of Svelte? It's perfectly understandable on bigger projects. A single .svelte file is a single component. Whatever CSS or JS that's in it handles the styling or behavior of that specific component (scoped styling). Then you build your app using those building blocks. It seems more understandable than having them all in separate files.

Collapse
 
jwp profile image
John Peters • Edited

Might want to take a 2nd look. Svelte is very cool. Thanks Hannah.

Collapse
 
fullstockdev profile image
The Full Stock Developer

Svelte doesn't really have an opinion about how you manage your styles. AFAIK you still need the style tag, but you could use PostCSS to import an external CSS file.