Around 44:45 a few minutes got cut off when I created the Button.svelte component. It's not a big deal, you can see the code, but it cut out me creating it. Sorry about that. Also, the repo is in the description if you need to see any part of the code.
00:20 What is Svelte 00:49 Compare to React 01:39 Why use Svelte 03:16 What should you know first 03:45 Svelte Component 04:46 How to get started 05:14 Project overview 06:30 Let's get started 08:01 VS code extension 08:17 Generated files explained 11:29 Basic fundamentals 15:47 Conditionals 17:16 Foreach loop 20:20 Starting a real-world application 01:03:34 Adding some transitions 01:06:02 Stores
@@vectoralphaSec Thank you. I have been following Brad for about 10 months now, I have completed Brad's Modern HTML & CSS and Modern JavaScript courses, where I gained the most knowledge, but his free content on youtube is also enough to get a job. Good luck.
When Svelte enters the room, the poor react, vue and angular bow down the king. But when "neo.mjs" enters the room, the svelte bows down to the legend.
This is the BEST SVELTE VIDEO FOR BEGINNERS, I recommend this one to everyone who wants to learn Svelte. And yesterday, on DEC 14, 2022 as a historical moment, Sveltekit 1.0.0 was officially RELEASED, so the formerly beta version is now fully stable, official version! CONGRATULATIONS to the Svelte & Sveltekit Team!! :)
When Svelte enters the room, the poor react, vue and angular bow down the king. But when "neo.mjs" enters the room, the svelte bows down to the legend.
This is an amazing video for beginners, thanks for making it free 🙏 Tip that could be useful for someone: instead of typing all html radiobuttons one by one a foreach can be used like this: {#each [1,2,3,4,5,6,7,8,9,10] as currRating}
Thank you Brad for this crash course. I had asked you on Twitter if you are planning a crash course on Svelte and you had said "Yes " and you delivered 👍
Great tutorial as always. As a bonus, you could implement the each loop instead of hardcoding all ten rating selections: {#each [...new Array(10)].map((_, i) => i + 1) as rating}
When Svelte enters the room, the poor react, vue and angular bow down the king. But when "neo.mjs" enters the room, the svelte bows down to the legend.
I have been waiting a long time for Brad to make a course like this! I have wanted to study svelte for a while now and Brad makes it easy. Love to you and your family!
If you are running an m1 mac, you may get an error when you npm run dev for the first time "You are not authorized to view this page" or similar. Port 5000 is being used by the airplay receiver, you need to use a different port. In package.json, add --port "new port number here" without the quotes to the start script and you're good to go. This will also change what port the dev script uses.
Oh man I'm, so happy you're doing svelte kit. I got my start as a react dev with your videos. Now we've migrated to Svelte Kit and I'm struggling. Your content makes learning this so much easier. I hope you do a bigger project with stores and reactivity if you have the bandwidth. Even a copy of one of your old react projects but built with svelte instead would be super helpful.
3 ปีที่แล้ว +8
nice to see some love for svelte, being using it for 1 year and half in production, never going back to react lol, great content
I’m looking to learn svelte, coming from react would you say that it’s just an easier tool compared to react? Sorry I’m just learning and hoping to get some insight
Thanks Friend! I just started getting into Svelte, coming from an Angular and Ember background. So much wow on how easy this is. Keep up the good work!
This was great. Thank you. I'm stoked I was able to solve the challenge you set forth AND I was able to refactor on my own once you introduced the "store" concept. All the best!
Thanks for the crash course, it's well done. Some constructive feedbacl: 7:28 degit doesn't clone, it downloads the tar for the latest commit, which is faster than cloning, and you won't get the commit history.
The ul inside the RatingSelect component can be easily refactored to not use the same code 10 times for each input: {#each Array(10) as _, index (index)}
For average and count I would do derived store. This would make it even cleaner code. Great tutorial, thought. Keep up with the Svelte, Brad! I think it has lots of potential and tutorials like this help people to learn about it. Thanks
Excellent! I'm looking at Svelte for plugins in Obsidian so I won't need some of the app boilerplate but this completely cleared up the brain fog. Time to watch a demo using the latest and check what's changed in the past 12 months.
Excellent tutorial... I'm really considering migrating from React to Svelte... Things seem much much simpler with this framework. Thanks again for your work, man!
This was a great intro to Svelte! I've been exploring a lot of front end frameworks like Angular and React. I honestly find that this is way easier to use then either of those based on this video. I'm going to have to make a few projects in it and try it out!
Awesome tutorial as always, Brad. Thank you so much. Svelte really trolled us with these file extension names... I miss .js / .jsx - but the overall tech is awesome. Looking forward to more Sveltelteletle
Hey Brad, solid video. Just a quick question though, wouldn't it be a bit more efficient in the feedback form component to make use of reactive values instead of creating the function that handles input? You could have one reactive value that checks if the length of text is correct, another reactive value for the disabled state of the button, and finally another one for the message, which is simply an empty string if the form is valid, or a string with your message if the form is not valid. Seems like you're missing out on Svelte's amazing reactive value system here, since two-way data binding for the text is already handled by the input.
Thanks for this video. Just a quick question. How would you add so the results and list can be sent to any given mailadress or to any receiver. I mean one feedback to a specific mailadress and one to hidden or open mailadress?
Would it not be better to pass the store to be used down as props into the list and item components? That way you could have multiple feedback lists or whatever, and you wouldn't have multiple components depending on kind of a global state.
First of all thank you very much, I was looking for some lightweight framework to make a simple but elegant website for a friend. Svelte is perfect for this kind of project
Thank you for your lesson ! I just got one problem(?) 1:03:09 when we run 「text = ""」of handleSubmit, The Send button didn't become disabled... What can I resolve this ?
I am finishing up your Modern JavaScript course on Udemy and couldn't decide on what JS framework to commit too. This looks promising, but do you believe Svelte will rise to be a contender?
I remember when my father worked for a top 10 company and he said they were still using windows xp when at the time the world has moved on to using windows 10. It just means some things stay up because most companies use one thing and it’s hard for them to start over or restart or change because it would be too costly to change.
I am getting a weird edge case at 50:02. Assuming that I start typing characters with no spaces, the message disappears right after I type the 12th character, not 10th. Additionally, if I start removing characters, the message re-appears as I delete the 9th character (now I am left with 8). I can't figure out what's causing this behavior. Any ideas?
Really nice video mate, thankyou! For anyone getting to the point where you have to do the dispatch and then create the event forwarding to pass things up to the main App - If like me you thought something like "hhmmm, that's kinda clunky", absorb it as an approach and wait for the Store implementation at the end - MUCH nicer, and worth it to see how much cleaner it is. Question! - So I can learn more, does anyone have a take on why you'd ever use that approach with the store technique being there? Is it a legacy approach that will just be used less? Having seen both in action I can't see an immediate reason to not use a store, even for a small app.
Hey, I was learning React and saw some videos about Svelte. It seems to do the same things but in a easier way, with lees code and more readable. Im wondering if Svelte is as poweful as React? Couse im falling in love with it! Thanks.
The styling for the Card component doesn't work on my end. I've even copied his github and the same rendering occurs of no separation of the feedback items.
Very thankful for his work, but given changes have occurred, what version of Svelte dies relate to or up to? What has changed or no longer applicable. Around the 8:23 minute mark when it showing the package dependencies it shows 3.0.0 for the Svelte compiler. I think at one point there was a 'breaking change', one guy wrote a book and a month later Svelte changed so drastically that he said his book was out of date completely and basically not worth buying - I think it had everything to do with 'routes'. I am sure the basics are always there - or at least good to know the background of a project - to help you understand an on going continuously improving application/environment/programing language, etc. FYI MS Visual Basic had a 'language break' where nothing written in a prior version could be run with the new version - things change life must go on.
When Svelte enters the room, the poor react, vue and angular bow down the king. But when "neo.mjs" enters the room, the svelte bows down to the legend.
I have a question. If we have global reactive variables which we can import using a single line, why do we need dispatch events and make it more complicated? Isn't it better to do it the earlier way like I suggested? That would be more inline to how we import classes in Java but the variables will be static instead? The dispatch events system is neat but that's probably only to use it as an event handler in case something happens to then execute code and change the global reactive variable so that all child components can update. Child components can still update the master component's reactive variables so I am not getting why we would need to do this.
At 20:00, you can use list.push(object) as long as you reassign the reference of the list variable to itself like this: list.push(obj) list = list It is better I think, as it doesn't copy the whole content of the array, which could be a little slower with a large list length.
@@prch818 The program has to update the DOM according to the data, which doesn't happen by default. The compiler takes care of this, and regenerates the view when it recognises an assignment. However, it cannot detect all kinds of changes made by a simple function call. It would be hard for it to recignise. Therefore, you can say list = list and give it a hint that it should update the view.
hello brad, gr8 vid like always, can u please show us the best way to develop large-scaled react/Next apps (no need to build an entire project) if you can give us some recommendations and best practices, how, when and other tips that help us to have a clean and well structured project even if it getts big and bigger
I’m a knockout js user and feel it’s simpler and cleaner. I could build this example in a fraction of the time with 75% less code using knockout. After 2 years of js development I really believe native js and knockout is the best combo
Great tutorial! Svelte looks good, but I still haven't seen any JS framework where the communication (in particular, upwards) between components is really easy. All that code (creating stores, importing them, or using event dispatchers) is not necessary when you write vanilla JS / jQuery. Also I really don't want to import specific animation effects before using them as in Svelte - jQuery is much better here.
Around 44:45 a few minutes got cut off when I created the Button.svelte component. It's not a big deal, you can see the code, but it cut out me creating it. Sorry about that. Also, the repo is in the description if you need to see any part of the code.
Sir i dont know you see my comment or not i am yor huge fan please do react advance project video
th-cam.com/video/kEQAYXcR6YQ/w-d-xo.html is that video copying known / permitted ? Someone took your video with his own audio overlay 😮
@@shocchosolutions6275 this is English language misuse, Sir
can't see the code
00:20 What is Svelte
00:49 Compare to React
01:39 Why use Svelte
03:16 What should you know first
03:45 Svelte Component
04:46 How to get started
05:14 Project overview
06:30 Let's get started
08:01 VS code extension
08:17 Generated files explained
11:29 Basic fundamentals
15:47 Conditionals
17:16 Foreach loop
20:20 Starting a real-world application
01:03:34 Adding some transitions
01:06:02 Stores
@traversymedia add this to info
You are a hero we didn't deserve.
You are a life changer for me! Following you for a year, I got a job. I have no words to thank you enough. I wish you all the best, buddy.
cool. How long did you start learning web dev before you got the job? Congrats.
Same for me. Self studied programmer.
@@vectoralphaSec Thank you. I have been following Brad for about 10 months now, I have completed Brad's Modern HTML & CSS and Modern JavaScript courses, where I gained the most knowledge, but his free content on youtube is also enough to get a job. Good luck.
When Svelte enters the room, the poor react, vue and angular bow down the king. But when "neo.mjs" enters the room, the svelte bows down to the legend.
I started my own youtube channel and now a company. Thnxx Brad. Programming dad
This is the BEST SVELTE VIDEO FOR BEGINNERS,
I recommend this one to everyone who wants to learn Svelte.
And yesterday, on DEC 14, 2022
as a historical moment,
Sveltekit 1.0.0 was officially RELEASED,
so the formerly beta version is now fully stable, official version!
CONGRATULATIONS to the Svelte & Sveltekit Team!! :)
Was waiting for Svelte content since long time... Thanks a lot, Brad!
More to come. SvelteKit will be next
yes me too
@@TraversyMedia I'm looking forward to this
Me tooooo!!!!
When Svelte enters the room, the poor react, vue and angular bow down the king. But when "neo.mjs" enters the room, the svelte bows down to the legend.
This is an amazing video for beginners, thanks for making it free 🙏
Tip that could be useful for someone: instead of typing all html radiobuttons one by one a foreach can be used like this:
{#each [1,2,3,4,5,6,7,8,9,10] as currRating}
{currRating}
{/each}
I'm 17min in and this is by far the best svelte tutorial I've seen so far already! 🙏💪
Thank you Brad for this crash course. I had asked you on Twitter if you are planning a crash course on Svelte and you had said "Yes " and you delivered 👍
Great tutorial as always.
As a bonus, you could implement the each loop instead of hardcoding all ten rating selections:
{#each [...new Array(10)].map((_, i) => i + 1) as rating}
{rating}
{/each}
Yes, nice improvement!
Great job!
Svelte is getting very popular, that's awesome! 😁
Hopefully we see more job openings for it. It really is an awesome framework
if you are Falvio Copes the one I know then I'm expecting a new book will be added soon to your free books collection :D
When Svelte enters the room, the poor react, vue and angular bow down the king. But when "neo.mjs" enters the room, the svelte bows down to the legend.
The first 20 mins of this video covers more than most videos on TH-cam, you are doing great work.
I have been waiting a long time for Brad to make a course like this! I have wanted to study svelte for a while now and Brad makes it easy. Love to you and your family!
for the radio buttons, we can use (bind:group={selected}).I think its more Svelte-like. thanks Brad as always.
Can you please show the code for implementing this?
This is my first Svelte course. If I ever do anything significant with Svelte, you have a big credit to that, Brad. Thank you very much.
If you are running an m1 mac, you may get an error when you npm run dev for the first time "You are not authorized to view this page" or similar.
Port 5000 is being used by the airplay receiver, you need to use a different port. In package.json, add --port "new port number here" without the quotes to the start script and you're good to go. This will also change what port the dev script uses.
Coming from a React Developer. I really like this framework a lot. Very precise, simple and helps you to exactly what you want to do.
Oh man I'm, so happy you're doing svelte kit. I got my start as a react dev with your videos. Now we've migrated to Svelte Kit and I'm struggling. Your content makes learning this so much easier. I hope you do a bigger project with stores and reactivity if you have the bandwidth. Even a copy of one of your old react projects but built with svelte instead would be super helpful.
nice to see some love for svelte, being using it for 1 year and half in production, never going back to react lol, great content
I’m looking to learn svelte, coming from react would you say that it’s just an easier tool compared to react? Sorry I’m just learning and hoping to get some insight
Yesss!! I love Svelte. Big companies need to start adopting it asap! :D
Of course you'd be here :P
I agree!
@@salehmdev Kevin is the man 😉
The stores feature of Svelte is simply amazing
Mr. Brad is that kind of teacher whom everybody wanted to be in his class
Perfect timing. Was starting to learn it. 👍👍
Thanks Friend! I just started getting into Svelte, coming from an Angular and Ember background. So much wow on how easy this is. Keep up the good work!
Svelte is sooooooooooo much easier than React to learn, read, and write.
Svelte kit is awesome too.
Glad you made this video. Love your content man.
Thanks for doing a new video! You’re always staying on top of the tech trends.
Great video as aways. I was planning on start using Svelte and this came at the perfect time.
I hope you do a Sveltekit crash course!!
I really like the pace of these crash courses. Not too slow and since they are relatively short they can be rewatched if needed.
Wow. Thanks for taking the time to show the different store and variable structures.
Dude this was great, you make things super relatable and easy to comprehend. More svelte content please.
This was great. Thank you. I'm stoked I was able to solve the challenge you set forth AND I was able to refactor on my own once you introduced the "store" concept. All the best!
When I find some new future, I always begin it with your crash course, Thanks!!!
Thanks for the crash course, it's well done. Some constructive feedbacl: 7:28 degit doesn't clone, it downloads the tar for the latest commit, which is faster than cloning, and you won't get the commit history.
Such a pleasant feeling to hear your voice, so much ease and knowledge. This is golden :)
Amazing and so well explained as always
Alpine is on the list for future videos 😊
Likes the video so thanks. Somthing that could be better is the RatingSelect HTML:
{#each [1,2,3,4,5,6,7,8,9,10] as num}
{num}
{/each}
The ul inside the RatingSelect component can be easily refactored to not use the same code 10 times for each input:
{#each Array(10) as _, index (index)}
{index + 1}
{/each}
Your voice + Your keyboard sound = fantastic programming code.
For average and count I would do derived store. This would make it even cleaner code. Great tutorial, thought. Keep up with the Svelte, Brad! I think it has lots of potential and tutorials like this help people to learn about it. Thanks
I can't beleive I just completed a svelte crash course! Thanks Brad.
This is simply awesome, I could not stop the video once started ☺️. You have sparked a interest to do Svelte.
Excellent! I'm looking at Svelte for plugins in Obsidian so I won't need some of the app boilerplate but this completely cleared up the brain fog. Time to watch a demo using the latest and check what's changed in the past 12 months.
Damn! Talk about timing, I've been looking to get into Svelte for the past month or so. Thanks a lot!
Excellent tutorial... I'm really considering migrating from React to Svelte... Things seem much much simpler with this framework. Thanks again for your work, man!
Perfect timing delivering svelte crash course/21 not too much out there and once again Brad delivers to us, thank you!
I really loved svelte through your video, it'll be my next project
This was a great intro to Svelte! I've been exploring a lot of front end frameworks like Angular and React. I honestly find that this is way easier to use then either of those based on this video. I'm going to have to make a few projects in it and try it out!
Awesome tutorial as always, Brad. Thank you so much.
Svelte really trolled us with these file extension names... I miss .js / .jsx - but the overall tech is awesome. Looking forward to more Sveltelteletle
Great introduction to Svelte - just what I needed. I really enjoy your work, Thanks so much.
I wonder what is the easiest js framework to work with? I don't care of job market, etc etc. What I care much is about development time.
It would be great if you can do SvelteKit or Svelte + Tailwind tutorial next.
Great tutorial as always! ❤️ from Sri Lanka
I think James Q Quick has one with Kit + Tailwind and he is another amazing instructor.
This is awesome. Would love it if you could do a SvelteKit tutorial
this is by far the best Svelte tutorial.
Big fan of your content. This tutorial was awesome. Thank you!
Hey Brad, solid video. Just a quick question though, wouldn't it be a bit more efficient in the feedback form component to make use of reactive values instead of creating the function that handles input? You could have one reactive value that checks if the length of text is correct, another reactive value for the disabled state of the button, and finally another one for the message, which is simply an empty string if the form is valid, or a string with your message if the form is not valid. Seems like you're missing out on Svelte's amazing reactive value system here, since two-way data binding for the text is already handled by the input.
this is why i read the comments... valuable insight like this :)
thanks Chris!
Thank you Brad, learned a new language today , feeling satisfied for the day❤️❤️❤️
Thanks for this video. Just a quick question. How would you add so the results and list can be sent to any given mailadress or to any receiver. I mean one feedback to a specific mailadress and one to hidden or open mailadress?
This is the button css that worked for me:
button {
padding: 10px 30px;
border: 1px solid #ff6a95;
border-radius: 0.25rem;
cursor: pointer;
font-size: 1rem;
font-weight: 600;
color: white;
margin: 5px 10px;
}
button:disabled {
cursor: not-allowed;
background-color: #ccc;
border: #888;
}
button:disabled:hover {
background-color: #ccc;
transform: scale(1);
}
.primary {
background-color: #202142;
}
.secondary {
background-color: #ff6a95;
}
button:hover {
transform: scale(0.98);
background-color: #ff6a95;
}
Your tutorials are awesome. I will try to rebuild your feedback app in Svelte 5. Thanks!
Svelte is to React what React is to angular.
Nope
perfect summary about the latest features
Would it not be better to pass the store to be used down as props into the list and item components? That way you could have multiple feedback lists or whatever, and you wouldn't have multiple components depending on kind of a global state.
First of all thank you very much, I was looking for some lightweight framework to make a simple but elegant website for a friend. Svelte is perfect for this kind of project
In 51:00 can you make those buttons with a for loop rather than repeating the code? I am new to JS.
As someone who usually does backend, svelte is a lifesaver for hobby projects. React had me banging my head against the wall.
Same i usually use htmx and svelte as i find react overkill for my simple projects 😂
@@darthtrex9356 how is htmx? I never really tried it before, I'm not sure how request responses or errors would be handled in html
a great tutorial to get you started with svelte, thank you Brad !!!
Thank you for your lesson !
I just got one problem(?)
1:03:09
when we run 「text = ""」of handleSubmit, The Send button didn't become disabled...
What can I resolve this ?
what are the odds you drop this video the day I start caring about svelte. 🚀
Very nice video! Congratulations and thank u for this content. I came from Vue but now im in love with Svelte 🤣🤣🤣
Awesome as always, worth to watch even if you already have used svelte before.
I am finishing up your Modern JavaScript course on Udemy and couldn't decide on what JS framework to commit too. This looks promising, but do you believe Svelte will rise to be a contender?
I remember when my father worked for a top 10 company and he said they were still using windows xp when at the time the world has moved on to using windows 10. It just means some things stay up because most companies use one thing and it’s hard for them to start over or restart or change because it would be too costly to change.
12:25 reactive value
19:50 overwriting array-ish vars
I am getting a weird edge case at 50:02. Assuming that I start typing characters with no spaces, the message disappears right after I type the 12th character, not 10th. Additionally, if I start removing characters, the message re-appears as I delete the 9th character (now I am left with 8). I can't figure out what's causing this behavior. Any ideas?
Really nice video mate, thankyou!
For anyone getting to the point where you have to do the dispatch and then create the event forwarding to pass things up to the main App - If like me you thought something like "hhmmm, that's kinda clunky", absorb it as an approach and wait for the Store implementation at the end - MUCH nicer, and worth it to see how much cleaner it is.
Question! - So I can learn more, does anyone have a take on why you'd ever use that approach with the store technique being there? Is it a legacy approach that will just be used less? Having seen both in action I can't see an immediate reason to not use a store, even for a small app.
Thanks for the fantastic tutorial! One thing I may have missed is why you did not use a loop to lay out the ratings.
Hey, I was learning React and saw some videos about Svelte. It seems to do the same things but in a easier way, with lees code and more readable. Im wondering if Svelte is as poweful as React? Couse im falling in love with it! Thanks.
Great job buddy. Concise and skillful.
The styling for the Card component doesn't work on my end. I've even copied his github and the same rendering occurs of no separation of the feedback items.
Very thankful for his work, but given changes have occurred, what version of Svelte dies relate to or up to? What has changed or no longer applicable.
Around the 8:23 minute mark when it showing the package dependencies it shows 3.0.0 for the Svelte compiler. I think at one point there was a 'breaking change', one guy wrote a book and a month later Svelte changed so drastically that he said his book was out of date completely and basically not worth buying - I think it had everything to do with 'routes'. I am sure the basics are always there - or at least good to know the background of a project - to help you understand an on going continuously improving application/environment/programing language, etc. FYI MS Visual Basic had a 'language break' where nothing written in a prior version could be run with the new version - things change life must go on.
When Svelte enters the room, the poor react, vue and angular bow down the king. But when "neo.mjs" enters the room, the svelte bows down to the legend.
Great crash course! Thanks for all the great content, Sveltekit crash course next 🙏
Is it ok to pass the function to the ListItem (a callback for deleting items) at 34:23 instead of dispatching events?
Svelte looks really interesting and I liked the tutorial. Guess I will try recreating your Feedback app. Thanks!
Excellent! I've been seeing Svelte more and more lately and I've been curious about it.
It really is great. Some things are just so simple compared to react
@@TraversyMedia It completely obsoletes React. I cannot look at any other framework anymore.
Great tutorial. Clear and conscise. Please make a follow up for sveltekit.
I have a question. If we have global reactive variables which we can import using a single line, why do we need dispatch events and make it more complicated? Isn't it better to do it the earlier way like I suggested? That would be more inline to how we import classes in Java but the variables will be static instead? The dispatch events system is neat but that's probably only to use it as an event handler in case something happens to then execute code and change the global reactive variable so that all child components can update. Child components can still update the master component's reactive variables so I am not getting why we would need to do this.
Was wondering when you cleared the text the button was still enabled. 1:03 approx.
Awesome course! I learned a lot. Thank you Brad!!
At 20:00, you can use list.push(object) as long as you reassign the reference of the list variable to itself like this:
list.push(obj)
list = list
It is better I think, as it doesn't copy the whole content of the array, which could be a little slower with a large list length.
Hey! Beginner here. Why do you have to do the 'list = list'? Why isn't the list.push(obj) enough?
@@prch818 The program has to update the DOM according to the data, which doesn't happen by default. The compiler takes care of this, and regenerates the view when it recognises an assignment. However, it cannot detect all kinds of changes made by a simple function call. It would be hard for it to recignise. Therefore, you can say list = list and give it a hint that it should update the view.
Great video! You really teach the fundamentals really well. I also really like your vs code theme here - what is it called? :)
Why are the components that use other variables from other components using export instead of import?
Svelte is my #1 fav go svelte! Go brad!
which theme is that you are using in vscode?
.
@@waldosobrino4589 i don't understand
@@chethanb6406 it's just for also get notified when he replies to you
hello brad, gr8 vid like always, can u please show us the best way to develop large-scaled react/Next apps (no need to build an entire project) if you can give us some recommendations and best practices, how, when and other tips that help us to have a clean and well structured project even if it getts big and bigger
I love this framework... Too bad they don't have any jobs with it in my country.... I'd definitely go for it.
Yeah. Give it some time. I think we’ll see some popping up
wao. Awesssome Your website is now updated. It looks amazing.
I’m a knockout js user and feel it’s simpler and cleaner. I could build this example in a fraction of the time with 75% less code using knockout. After 2 years of js development I really believe native js and knockout is the best combo
1:15:52 " i dont know why it got here" i saw many of that in other of your videos, the reason is you do typo, and the auto import executed
Great tutorial! Svelte looks good, but I still haven't seen any JS framework where the communication (in particular, upwards) between components is really easy. All that code (creating stores, importing them, or using event dispatchers) is not necessary when you write vanilla JS / jQuery. Also I really don't want to import specific animation effects before using them as in Svelte - jQuery is much better here.
You are a game changer of web development 🔥🔥
Nice! This video was exactly what i needed to get started!