Svelte: Difference between revisions
Brian Wilson (talk | contribs) mNo edit summary |
Brian Wilson (talk | contribs) |
||
(5 intermediate revisions by the same user not shown) | |||
Line 11: | Line 11: | ||
I am currently working out a template to use for my projects in this [https://github.com/Wildsong/svelte-parcel Github repo]. | I am currently working out a template to use for my projects in this [https://github.com/Wildsong/svelte-parcel Github repo]. | ||
Here's a short article; someday I will look at Tailwind. [https://codechips.me/svelte-tailwind-parcel-awesome/ Svelte + Tailwind + Parcel = Awesome] Jan 2020 | |||
See also [https://codechips.me Ilia's "book"] | |||
== Sveltekit == | == Sveltekit == | ||
I am looking at it, so far the combination of Svelte and Parcel seems acceptable to me. | I am looking at it, so far the combination of Svelte and Parcel seems acceptable to me. | ||
This book uses Sveltekit in its examples: https://codechips.gumroad.com/l/svelte-forms | |||
== Resources == | == Resources == | ||
Line 20: | Line 25: | ||
* https://svelte.dev | * https://svelte.dev | ||
* https://kit.sveltekit.dev | * https://kit.sveltekit.dev | ||
* | * "Svelte 3 Up and Running", Alessandro Segala, samples are in https://github.com/PacktPublishing/Svelte-3-Up-and-Running I read it in O'Reilly via https://learning.acm.org with my ACM membership. This book is based on [[Jamstack]] | ||
* "Practical Svelte", Alex Libby, also in O'Reilly | |||
* [https://cloudflare.com Cloudflare] is all in with Svelte via Pages, see [https://pages.cloudflare.com/ pages.cloudflare.com] and https://developers.cloudflare.com | * [https://cloudflare.com Cloudflare] is all in with Svelte via Pages, see [https://pages.cloudflare.com/ pages.cloudflare.com] and https://developers.cloudflare.com | ||
* | * [[Twilio]] -- There are some tutorials that are useful for me. | ||
** [https://www.twilio.com/blog/all-you-need-to-know-svelte Beginner's guide to Svelte] | ** [https://www.twilio.com/blog/all-you-need-to-know-svelte Beginner's guide to Svelte] | ||
** [https://www.twilio.com/blog/build-chat-app-twilio-conversations-svelte Build a chat app] | ** [https://www.twilio.com/blog/build-chat-app-twilio-conversations-svelte Build a chat app] | ||
** [https://www.twilio.com/blog/react-svelte-comparing-basics Svelte and React compared] | ** [https://www.twilio.com/blog/react-svelte-comparing-basics Svelte and React compared] | ||
[[Category: Web]] | |||
[[Category: JavaScript]] |
Latest revision as of 05:47, 13 February 2022
...and also Sveltekit, as needed.
Svelte and Parcel
I learned Parcel 1 when I was working with React and I got used to it.
I tested the conventional Svelte + Rollup demo and decided I am happier with Parcel 2.
Parcel really does require almost no configuration at all, so every time I look at other approaches I back away. There are a few hoops to jump through to get it to do some tricky things like image processing but it's tricky so I accept that.
I am currently working out a template to use for my projects in this Github repo.
Here's a short article; someday I will look at Tailwind. Svelte + Tailwind + Parcel = Awesome Jan 2020 See also Ilia's "book"
Sveltekit
I am looking at it, so far the combination of Svelte and Parcel seems acceptable to me.
This book uses Sveltekit in its examples: https://codechips.gumroad.com/l/svelte-forms
Resources
- https://svelte.dev
- https://kit.sveltekit.dev
- "Svelte 3 Up and Running", Alessandro Segala, samples are in https://github.com/PacktPublishing/Svelte-3-Up-and-Running I read it in O'Reilly via https://learning.acm.org with my ACM membership. This book is based on Jamstack
- "Practical Svelte", Alex Libby, also in O'Reilly
- Cloudflare is all in with Svelte via Pages, see pages.cloudflare.com and https://developers.cloudflare.com
- Twilio -- There are some tutorials that are useful for me.