Vites Fatal Flaw Fixed With Vinxi

  Рет қаралды 17,410

Jack Herrington

Jack Herrington

Күн бұрын

Пікірлер: 85
@not_cool_dev
@not_cool_dev 4 ай бұрын
With most of the documentation still "Coming soon", I really appreciate you taking the time figure out how to get it up and running by diving into the examples.
@StingSting844
@StingSting844 4 ай бұрын
Great content pops. I hope you're doing well ❤
@jherr
@jherr 4 ай бұрын
I am. And thank you!
@tomasb3191
@tomasb3191 4 ай бұрын
I couldn't figure out the docs, I know this is what solid uses. I'll follow this, love vite! great content as always
@jyjyjyj3
@jyjyjyj3 3 ай бұрын
Check examples folder in vinxi repo
@emersondemetrio
@emersondemetrio 4 ай бұрын
Also, thanks a lot for sharing the source code. I've been learning a lot with you lately 🙏
@0x3334
@0x3334 3 ай бұрын
More Murph-driven projects please. Great video as always!
@jyjyjyj3
@jyjyjyj3 3 ай бұрын
I don't like file-based routers and I don't need SSR in my pet project, but I enjoy the convenience of server functions. Recently, I created a standard SPA React app with the ability to call server functions. Thanks, Vinxi! It's important to mention that adding this functionality took only a few minutes. I think it would be a great idea for your next video to showcase a similar setup
@RyanRampersad
@RyanRampersad 3 ай бұрын
Great video! I hadn't heard of Vinxi (and wouldn't have pronounced it like that - ha). Thanks!
@cariyaputta
@cariyaputta 4 ай бұрын
Cool. First time heard of Vinxi.
@coreyspeisman3941
@coreyspeisman3941 4 ай бұрын
Thanks Jack! I would be really curious to explore what the build output looks like!
@devinxi
@devinxi 4 ай бұрын
It’s exactly vite for the client side and the server side is a nitro build.. but basically a bundled node script kinda thing
@DivjotSingh
@DivjotSingh 4 ай бұрын
Would be nice to compare this with vite ssr server.js. That feels more straightforward but equally experimental.
@magne6049
@magne6049 3 ай бұрын
Vinxi is really a MetaRouter (built on top of a web server, H3/Nitro). Since its core thing is that it allows you to compose routers. It routes between routers.
@jyjyjyj3
@jyjyjyj3 3 ай бұрын
Yep. You can literally create several APIs in your project (one in Hono and one in Express, for example).
@zakir.nuriiev
@zakir.nuriiev 4 ай бұрын
Cool! Thank you for the nice overview!
@grugbrain
@grugbrain 4 ай бұрын
I guess next time you are going to talk about pnpm workspace, or monorepo thing, sharing code/components/hooks among multiple next.js apps. 🥰
@VeaceslavBARBARII
@VeaceslavBARBARII 4 ай бұрын
Great idea
@jherr
@jherr 4 ай бұрын
It sounds like you want me to talk about that. :)
@grugbrain
@grugbrain 4 ай бұрын
@@jherr Yes! Yes! Please do!
@Zephury
@Zephury 4 ай бұрын
@@jherr coolify + turbopack builds with caching at some point maybe?
@denno021
@denno021 3 ай бұрын
Is it possible to extend this a little to show how it works in production? I've only been using Vite for static building of my SPA currently, not as a production server, so would be interested to see how that works, and then how Vinx works on top of Vite to make that even better.
@MoulyTTS
@MoulyTTS 3 ай бұрын
Great content, I just arrived to your channel and I am so happy. Great quality,,
@rezaghifary3653
@rezaghifary3653 3 ай бұрын
Webdev is up to the roof!
@xorlop
@xorlop 4 ай бұрын
Just a heads up, I think the node team wants to deprecate corepack. Probably won’t happen for another five years though, lol. I think nix devenv is a good solution for node and package manager installations, instead.
@jherr
@jherr 4 ай бұрын
Never a dull moment in node land.
@khoinguyen-ft2ys
@khoinguyen-ft2ys 4 ай бұрын
Thanks for your awesome video. If possible, please create a video about honojs + vitejs
@Frostbytedigital
@Frostbytedigital 4 ай бұрын
While its a slightly quicker dev experience in general (especially within meta frameworks like solid start) i still find vinxi and all other js https server implementations much less performant than using golang for apis, and have to be certain the service will never have a high user base for me to feel comfortable using JS apis.
@MrEnsiferum77
@MrEnsiferum77 Ай бұрын
it's server close the the client, but it can be rewritten in go or rust, the point is that, u don't need fullblown framework. Btw, the BE server api endpoints are least important if they are written in go or js (besided different handling of GC), u will sooner or later ends up wtih CQRS for performance issues.
@gnrsn9714
@gnrsn9714 4 ай бұрын
Corepack vid yes please! ❤
@jongseoklee9477
@jongseoklee9477 4 ай бұрын
Thank you for the very informative video today. I was happy to see you use pnpm. Can you make a video about monorepo such as pnpm or Nx? Thank you always :)
@jialx
@jialx 4 ай бұрын
Absolutely typical.. I build something that was now extremely simplified two weeks later.
@nro337
@nro337 4 ай бұрын
Great video!!
@whoknows3679
@whoknows3679 4 ай бұрын
Have you tried vike?
@jherr
@jherr 4 ай бұрын
I have not. I'll give it a look.
@ErickRodrCodes
@ErickRodrCodes 4 ай бұрын
Nice explanation on Vinci! I wonder if I can Inject that with an electron app :D :D
@dinckelman
@dinckelman 4 ай бұрын
The reason you don't need to use a useEffect anymore, is because in SSR pages, you can just async/await your api calls directly. However, since you're using client-side state, you still have to do it anyway
@MrEnsiferum77
@MrEnsiferum77 Ай бұрын
just wire it with tanstack query, and u don't need useEffect at all, nor client state, unless u need to set some current item
@MerthanMerter
@MerthanMerter 4 ай бұрын
time to rewrite my project 🎉
@jyjyjyj3
@jyjyjyj3 3 ай бұрын
You don't need to do this if you used Vite before
@netvaibhav
@netvaibhav 4 ай бұрын
How do we do ssr? Also, can we have filesystem based routing?
@jherr
@jherr 4 ай бұрын
Yes and yes. But the file based routing is currently at "experimental" level./
@6little6fang6
@6little6fang6 4 ай бұрын
sick
@guhaprasaanthnandagopal8486
@guhaprasaanthnandagopal8486 4 ай бұрын
Great content @jherr I do have a question What would the difference be if I were to use Bun instead of PNPM/NPM/Yarn?
@jherr
@jherr 4 ай бұрын
AFAIK you can 100% use bun for the install. Not sure if you can run it with bun. But it would be a bun problem if you can't. It's not the job of library/framework authors to make their code Bun compatible. It's the job of Bun to be compatible with frameworks and libraries.
@devinxi
@devinxi 4 ай бұрын
Yup can both install with bun and run with bun .. which actually runs vinxi in node.. but you can do bun run dev -bun and that’s pure bun magic
@guhaprasaanthnandagopal8486
@guhaprasaanthnandagopal8486 4 ай бұрын
@@jherr Thank you
@guhaprasaanthnandagopal8486
@guhaprasaanthnandagopal8486 4 ай бұрын
@@devinxi Thank you
@rahulsriram6295
@rahulsriram6295 2 ай бұрын
is there anything similar for Hono? Like how Vinxi is for Nitro
@electroheadfx
@electroheadfx 4 ай бұрын
is vinxi could run solidJS + ReactJS each one on a router via plugin in one app ?
@jherr
@jherr 3 ай бұрын
Yep.
@electroheadfx
@electroheadfx 3 ай бұрын
@@jherr Its amazing
@emersondemetrio
@emersondemetrio 4 ай бұрын
Fantastic.
@grugbrain
@grugbrain 4 ай бұрын
This is cool!
@naranyala_dev
@naranyala_dev 3 ай бұрын
full typescript stack
@CaleMcCollough
@CaleMcCollough 4 ай бұрын
What is better in 2024: Vite with Vinxi or Next.JS 14?
@viniciusataidedealbuquerqu2837
@viniciusataidedealbuquerqu2837 4 ай бұрын
vendor locking is a bitc* so vinxi it is
@CaleMcCollough
@CaleMcCollough 4 ай бұрын
​@@viniciusataidedealbuquerqu2837 Next.JS isn't vendor locked. I'm building a monolith server with Appwrite and Next.JS using TrueNAS Scale and Docker. The good thing about Appwrite is that you can use their cloud, it has in-memory caching, and then transfer into a 64 or 128-core server you can upgrade to 2TB RAM, multiple petabytes of hard drives and U2 NVMe. By the time you exhaust those resources, you will have so much money coming in someone else can deal with it. It's more important to have your database and server on the same server with in-memory caching than it is to have a horizontally scaled service you may never need that much power for.
@jherr
@jherr 4 ай бұрын
I'm going to go with NextJS because it's a canned complete solution. Vinxi to me feels like SPA++.
@luka1790
@luka1790 4 ай бұрын
Depends what u wanna build
@Metruzanca
@Metruzanca 4 ай бұрын
Solidstart? Thats a framework. Vinxi? Thats a meta-meta-framework. Vite? Thats the meta-framework that the meta-meta-framework vinxi uses to power the framework solidstart.
@magne6049
@magne6049 3 ай бұрын
solid is a framework, and solidstart is its metaframework (that uses the metaRouter Vinxi). Now try again😅
@magne6049
@magne6049 3 ай бұрын
Please do VikeJS (vite-plugin-ssr)!
@mikkelwf1984
@mikkelwf1984 4 ай бұрын
Fatal flaw? Come on.. 🤣
@jherr
@jherr 4 ай бұрын
It's KZbin. I gotta push the clickbait a little. :)
@akay64x2
@akay64x2 3 ай бұрын
I actually thought they fixed that memory issue on bigger projects, that's the real fatal flaw.
@tzelon47
@tzelon47 4 ай бұрын
I love you. But man, a meta meta framework. Where did we take the wrong turn?
@luka1790
@luka1790 4 ай бұрын
Why tho, i like it
@magne6049
@magne6049 3 ай бұрын
Vinxi is a meta-router which is used in meta-frameworks like SolidStart.
@ChristianMoentest
@ChristianMoentest 4 ай бұрын
What about remix?
@jherr
@jherr 3 ай бұрын
What about remix?
@ChristianMoentest
@ChristianMoentest 3 ай бұрын
@@jherr They migrated to vite, so remix is now a vite plugin :-) I though you might like it?
@jherr
@jherr 3 ай бұрын
@@ChristianMoentest Sure. Yeah. It's good stuff.
@FatahChan
@FatahChan 4 ай бұрын
can you deploy this on vercel?
@Peshyy
@Peshyy 4 ай бұрын
Yes
@krishna-santosh
@krishna-santosh 4 ай бұрын
What's up with all these comments 😂 lol
@codingwithbrian
@codingwithbrian 4 ай бұрын
Haha I don't know but they are not wrong!
@jherr
@jherr 4 ай бұрын
I guess it's a sign of success that my first comments are always bots with sexy avatars making generalized comments. I'm not sure what it gets them though.
@Gaijin101
@Gaijin101 4 ай бұрын
Just use Nitro tbh.
Finally Fix Your Issues With JS/React Memory Management 😤
20:13
Jack Herrington
Рет қаралды 88 М.
React 19's useOptimistic: EVERYTHING you NEED to know
25:24
Jack Herrington
Рет қаралды 16 М.
كم بصير عمركم عام ٢٠٢٥😍 #shorts #hasanandnour
00:27
hasan and nour shorts
Рет қаралды 11 МЛН
Do you love Blackpink?🖤🩷
00:23
Karina
Рет қаралды 22 МЛН
Муж внезапно вернулся домой @Oscar_elteacher
00:43
История одного вокалиста
Рет қаралды 7 МЛН
Solid.js Just Got WAY Better
13:11
Theo - t3․gg
Рет қаралды 85 М.
The Cursor Experience, With Neovim's Magic
10:19
DevOps Toolbox
Рет қаралды 23 М.
Micro Frontends Crash Course with React & Webpack 5 Module Federation
1:11:37
Why is everyone LYING?
7:56
NeetCodeIO
Рет қаралды 358 М.
I HACKED ShadCN to Create Insane React Templates and Installers
14:59
Jack Herrington
Рет қаралды 22 М.
Warning: React 19's use Hook Can Impact App Performance
13:19
Jack Herrington
Рет қаралды 11 М.
Reacting to Controversial Opinions of Software Engineers
9:18
Fireship
Рет қаралды 2,1 МЛН
Declarative Routes for NextJS and React-Router: DRY Routing
13:07
Jack Herrington
Рет қаралды 27 М.
“use cache” NextJS’s latest take on data caching
17:27
Jack Herrington
Рет қаралды 9 М.
Is One the ultimate React and React Native Framework?
18:03
Jack Herrington
Рет қаралды 28 М.