Max, I watched and followed the tutorial inside out. I stopped, rewound, compare, and investigate. All in all around 6 -8 hours with this tutorial. All I have to say is thanks, it was greatly explained.
You know a framework is relevant once the courses start coming out... Great video. I love Remix. It simplifies working with React. I don't have to do with useEffect and all those weird data fetching patterns in React. Once they add caching and all the other functionality in TanStack Query it will be even better. It still does a lot to help you with data fetching, mutations and error handling.
The first toturail on Remix that makes sense to me. This tutorial set me up for taking Remic in my stack. This is more than a crash course. Remix is cool, and thank you for such a content.
wow, after following some tutorials about Next...I can tell why Remix is way more cool, and easier to understand for those coming from php background Thank you for this tutorial
My dynamic segment $noteId is not working, I can't show the note details. The URL is changing to notes/{current note id} but the nav is staying on the note list :(
Very helpful! I had to take extra time to adjust my code because I was using typescript (which I'd never used before) and had to consider updates with remix v2 but debugging didn't take terribly long. Thanks so much for this tutorial
I made the project with remix run few months ago i faced some issues with swiper js library. You have to change import statement in swiper react and do some error blocking configuration on remix directory files to run it properly in remix. Remix is great for frontend and i guess react and remix both has the same performance. I don't see much difference in performance.
I guess in the newer version there is a CSS bundler. Not sure how it works. Can you create a separate video explaining `export const links: LinksFunction = () => [ ...(cssBundleHref ? [{ rel: "stylesheet", href: cssBundleHref }] : []), ];`?
This crash course gives a good insight into Remix. I really liked it, however the way errors are handled I found it a little confusing at first time. Anyway thanks for explaining so well, Max.
im getting No routes matched location "/*%20%7B%20%20box-sizing:%20border-box;%7D:root%20%7B%20%20--color-primary-10:%20" when adding the main.css in the project and proper import, what should i look for
I'm watching this on 2024, for me when I run the npm run dev, it says > dev > remix dev --manual 💿 remix dev info building... info built (696ms) after this there is no such remix development server started notification comes. how to solve it?
I'm following through this tutorial, but something's up with my main.css style import. I see the styling in the UI just fine, but in my console I am getting this error: No routes matched location "/body%20%7B%20%20background:%20orange;%7D/*%20*%20%7B%20%20box-sizing:%20border-box;%7D:root%20%7B%20%20--color-primary-10:%20" ErrorResponseImpl { status: 404, statusText: 'Not Found', internal: true, data: 'Error: No route matches URL "/body%20%7B%20%20background:%20orange;%7D/*%20*%20%7B%20%20box-sizing:%20border-box;%7D:root%20%7B%20%20--color-primary-10:%20"', error: Error: No route matches URL "/body%20%7B%20%20background:%20orange;%7D/*%20*%20%7B%20%20box-sizing:%20border-box;%7D:root%20%7B%20%20--color-primary-10:%20" It looks like it's trying to treat the style as a URL or something, which isn't correct. I've double-checked everything, did what Chat GPT told me to fix, etc. Any advice?
1:19:15 - following this guide, any refresh of the page results in raw JavaScript being returned as a server-side render (I presume by the loader() function). Any idea what causes this?
____________SCSS WITH REMIX________________ is there anyone using scss with remix. i've tried multiple way read so many blogs. whenever i try to complile scss it stucks at Rebuilding (in terminal remix server). please help is anyone knows the solution.
dang wish I'd had this available when we did a big Remix project at work 7 months ago. I'd like to work with it again but it looks like my company is all in on Next 13
Since every page is server side rendered, when the clients get the response, the whole data of that page is already there, meaning search engines can scan that response. So yeah, Remix is SEO friendly.
Yeah, like, these guys are lesson creator pros that have been at this for 10 years. This has to be intentional to inflict pain on the viewer in hopes of selling the course.
@@developer_hadi Next has a very large head start, but, I like Remix more because it requires less "framework specific" knowldage, vs Remix where you're leveraging more universal web standards. I always learn something about web standards when deving with Remix.
For some reason my NoteDetailsPage() function is not being called. I put this function in notes.$noteid.tsx and the loader works exactly as expected. What am I doing wrong? I can provide all of the source code if need be. Is this a Remix V1 vs. V2 problem? Did I accidentally create a resource route? How do I debug this problem? I am at 1:55:14 of ua-cam.com/video/RBYJTop1e-g/v-deo.html. Thank you.
I looked into this a bit more. The problem was 'solved' by adding Outlet to NotesPage() in notes.tsx. It is quite unclear if this is a V1 vs. V2 bug or if I have made a mistake somewhere else. Note that Outlet should be preceded by a less than sign and followed by a blank, a forward slash, and a greater than sign.
Max, I watched and followed the tutorial inside out. I stopped, rewound, compare, and investigate. All in all around 6 -8 hours with this tutorial. All I have to say is thanks, it was greatly explained.
Bought this course as soon as it was released on Udemy even without knowing exactly what Remix is :) Max is the best
Well the repo for that course doesn't even work anymore. Wish he would fix it!
@@KylanHurtwhich course is best now
You know a framework is relevant once the courses start coming out... Great video. I love Remix. It simplifies working with React. I don't have to do with useEffect and all those weird data fetching patterns in React. Once they add caching and all the other functionality in TanStack Query it will be even better. It still does a lot to help you with data fetching, mutations and error handling.
yes, it's cool
Is Cache is already built in w fetch api?
The first toturail on Remix that makes sense to me. This tutorial set me up for taking Remic in my stack. This is more than a crash course.
Remix is cool, and thank you for such a content.
Remix is so much better than next. Thanks for this course
great course. Fast paced, but covers very important and useful knowledge and explains it in a clear, organized and logical manner.
Excellent tutor and fantastic course Max. Keep it up!
wow, after following some tutorials about Next...I can tell why Remix is way more cool, and easier to understand for those coming from php background
Thank you for this tutorial
Great course and well put together like usually. A good teacher like Max has skills to explain things clearly and thoroughly.
Congratulations, you are such a great teacher! I really enjoy the way you present and organize your content. Godspeed!
I might be late to the party to praise your content but as usual you are a great teacher and the content is as great as you are. Thanks so much
Thanks for this quick course. It's the best one in a whole UA-cam.
are u have github?
@@gangwang9641 croked91
Glad to see Remix getting some love. Always love your courses!
watched a pretty cool tutorial after a very long time. simply amazing!
Thank you, that was a fantastic Remix introduction!
This was an amazing crash course! Thank you for helping me understand Remix in such a short amount of time!
Max is still the best developers teacher of the whole Internet 🙂
My dynamic segment $noteId is not working, I can't show the note details. The URL is changing to notes/{current note id} but the nav is staying on the note list :(
Had the same issue. Rename your notes.jsx to notes._index.jsx.
I ended up doing the same, it works perfectly ! @@arthurgartner
I had to:
1. update 'notes.jsx' to 'notes._index.jsx'
2. update '' in the NoteList.jsx file to '
@@arthurgartner super thank you
Really impressive delivery!
Max, you always do a great job. Thanks.
Your explanation is excellent.
thanks! l always prefer to watch your lessons, cuz I know how easily you can explain everything!
Great to have this video. Thanks you so much paid grad content for providing for free Sir. " Heads Off " to you.
The best teacher ❤️
Do you have an updated Remix crash course? I had to abandon Next JS due to conflicts with dependencies in React 19. I need to learn Remix.
Thanks very much for this crash course video Sir! Just purchased the practical guide course. I will very likely be using #Remix for my next project!!!
Excellent job, this framework is easier to catch-up than Nextjs
The course is really good
Will the Udemy course be updated for V2 any time soon?
Hi Max... Please launch your complete blockchain application development course...waiting for such a course from you...lots of Love❤️❤️
You are the best. Brought your course today.. Thanks a ton.. 👍
Awesome crash course!!!
Thank you so much for this awesome course, I really liked Remix and planning to use it in future
I want to thank you for providing this tutorial
Very helpful! I had to take extra time to adjust my code because I was using typescript (which I'd never used before) and had to consider updates with remix v2 but debugging didn't take terribly long. Thanks so much for this tutorial
Amazing explanation, thank you!
This course is best!!
This is amazing video on remix ❤
It seems like in Remix 2, the routes are handled differently. Any idea on how to create a custom layout on 2.14?
Nice video that explains how we use remix
I made the project with remix run few months ago i faced some issues with swiper js library. You have to change import statement in swiper react and do some error blocking configuration on remix directory files to run it properly in remix. Remix is great for frontend and i guess react and remix both has the same performance. I don't see much difference in performance.
I guess in the newer version there is a CSS bundler. Not sure how it works. Can you create a separate video explaining `export const links: LinksFunction = () => [
...(cssBundleHref ? [{ rel: "stylesheet", href: cssBundleHref }] : []),
];`?
I have been looking for course on remix like for ever
remix have built in backend?
This crash course gives a good insight into Remix. I really liked it, however the way errors are handled I found it a little confusing at first time. Anyway thanks for explaining so well, Max.
Thank you so much. Great course.
Thanks for your good work boss
Thanks man!
Thank you, Max!
hi i am getiing issue in redirect i am using Form from remix react and redirect from remix node but its still reloding what should i do?
im getting No routes matched location "/*%20%7B%20%20box-sizing:%20border-box;%7D:root%20%7B%20%20--color-primary-10:%20" when adding the main.css in the project and proper import, what should i look for
Thanks, that's very helpful 👍
You are the best for me.
Great vid but would very much appreciate labeled timestamps
Love it. I would appreciate if the content was searchable though. Not complaining, just giving feedback. ✌
I have not been asked Javascript or Typescript, bit it set in typescript by default. How to use it with Javascript?
thx very nice intro
With later versions of Remix, meta() should return an array of objects
nice, tyvm!
Remix vs Nextjs whice is better?
remix is too specific and is not used that often while nextjs has already become the gold standard
How is this course different from the course I just bought on Udemy?
Is this course updated according to Remix v2?
Excellent ✨
I'm watching this on 2024, for me when I run the npm run dev, it says > dev
> remix dev --manual
💿 remix dev
info building...
info built (696ms)
after this there is no such remix development server started notification comes. how to solve it?
Thanks max
Is anybody know how will it deploy to IIS ?
something is wrong with live load and its not my extension its remix i can never get it to show the changes i make
I'm following through this tutorial, but something's up with my main.css style import. I see the styling in the UI just fine, but in my console I am getting this error:
No routes matched location "/body%20%7B%20%20background:%20orange;%7D/*%20*%20%7B%20%20box-sizing:%20border-box;%7D:root%20%7B%20%20--color-primary-10:%20"
ErrorResponseImpl {
status: 404,
statusText: 'Not Found',
internal: true,
data: 'Error: No route matches URL "/body%20%7B%20%20background:%20orange;%7D/*%20*%20%7B%20%20box-sizing:%20border-box;%7D:root%20%7B%20%20--color-primary-10:%20"',
error: Error: No route matches URL "/body%20%7B%20%20background:%20orange;%7D/*%20*%20%7B%20%20box-sizing:%20border-box;%7D:root%20%7B%20%20--color-primary-10:%20"
It looks like it's trying to treat the style as a URL or something, which isn't correct. I've double-checked everything, did what Chat GPT told me to fix, etc. Any advice?
Could you please make one video for pagination of Remix Run, or introduce some useful resources
very great video
Does the Remix backend run in NodeJS environment?
Super duper ❤😍
1:19:15 - following this guide, any refresh of the page results in raw JavaScript being returned as a server-side render (I presume by the loader() function). Any idea what causes this?
Me too, were you able to solve it?
So max when are you releasing a rust course? I need to train someone in Rust :)
What a difference one year makes? Remix 2 broke Remix 1 :-(
Ruby on Rails is so much readable!
dynamic routes are not working
Nice job on the content. Bookmarks would be helpful on a 2+ hour video.
Omg I was literally searching for this 2 days ago 😇
____________SCSS WITH REMIX________________
is there anyone using scss with remix. i've tried multiple way read so many blogs. whenever i try to complile scss it stucks at Rebuilding (in terminal remix server).
please help is anyone knows the solution.
how about upgrade to V2
Astro course, when?
Remix, Nextjs, Astro What the hell should i learn
There are too many Frameworks. I am trying to stick with one tech stack but I get distracted so easily
Don't learn them all. Learn one of them, and expand upon that one framework
I would say NextJS - after you've understood React well :D
Pick any one first, switching later shouldn't be too difficult. I have seen a few recruiters asking for Next.JS. But not the other 2 as of now.
@@phucnguyen0110 Yeah Next is quite good honestly. I don't know if it's better than Remix but I am most productive in Next
How to add custom fonts face in remix?
dang wish I'd had this available when we did a big Remix project at work 7 months ago. I'd like to work with it again but it looks like my company is all in on Next 13
are you able to use next13 for production ? , app directory still in beta and i could not find a way to use next export to build prod version of it
@@MahmoudAshraf yes we use it in prod for multiple projects
@@MahmoudAshraf i had the same issue but seems like that next js already fixed it
Can we use some UI framework like: MUI, Mantine UI, ...?
You can use tailwind.
Does Remix have SEO?
Since every page is server side rendered, when the clients get the response, the whole data of that page is already there, meaning search engines can scan that response. So yeah, Remix is SEO friendly.
Yes remix is great for seo performance.
Is react still a "library" though?
react - yes, remix - no
Please add timestamps in description
Yeah, like, these guys are lesson creator pros that have been at this for 10 years. This has to be intentional to inflict pain on the viewer in hopes of selling the course.
Is remix better than next ?
@@developer_hadi Next has a very large head start, but, I like Remix more because it requires less "framework specific" knowldage, vs Remix where you're leveraging more universal web standards. I always learn something about web standards when deving with Remix.
🔥🔥🔥
What is different between remix and react?
Remix can be compared with nextjs. Both add capabilities to the core react which runs underneath both.
I wish there were more errörs in the video.
routes to juggle pages
❤️
For some reason my NoteDetailsPage() function is not being called. I put this function in notes.$noteid.tsx and the loader works exactly as expected. What am I doing wrong? I can provide all of the source code if need be. Is this a Remix V1 vs. V2 problem? Did I accidentally create a resource route? How do I debug this problem? I am at 1:55:14 of ua-cam.com/video/RBYJTop1e-g/v-deo.html. Thank you.
I looked into this a bit more. The problem was 'solved' by adding Outlet to NotesPage() in notes.tsx. It is quite unclear if this is a V1 vs. V2 bug or if I have made a mistake somewhere else. Note that Outlet should be preceded by a less than sign and followed by a blank, a forward slash, and a greater than sign.
why we need remix/ next? why not just react
Please add timestamps
Watch this on 2x is better
i need timeline >:(
you skip the nested routes