Edit: There's some more discussion about Turbopack at https://news.ycombinator.com/item?id=33333695 . Looks like they launched a webpack alternative called Turbopack today: > Next.js 13 includes Turbopack, the new Rust-based successor to Webpack. https://vercel.com/blog/turbopack https://turbo.build/pack
>On an application with 3,000 modules, Turbopack takes 1.8 seconds to boot up, while Vite takes 11.4 seconds. How many apps are dealing with 3,000+ modules?
Next.js 13
61–70 of 106 posts
Re: Next.js 13
#62Earlier quoted context omitted.
> I'm all for accessibility, but let us decide when to implement it. Which usually means never.
Which is ok too. It is far better than encouraging people to write alt="" or alt="asdf". See also (naming things): https://twitter.com/secretGeek/status/7269997868
It's 6 extra characters, you'll survive.
Re: Next.js 13
#63I’ve already heard from the team about the plan for my last concern, and it seems viable.
https://andrewingram.net/posts/thoughts-on-next-13-react-18-...
Re: Next.js 13
#64Earlier quoted context omitted.
Sigh? I think the speed improvement is awesome .
I'm quite alright with new tooling every six months when the new thing is orders of magnitude faster. If people want to compete to make my job as a frontend dev easier and faster, that is just fine .
Re: Next.js 13
#65Earlier quoted context omitted.
That's a good thing? Keeps things fresh and keeps established "norms" unable to stay complacent.
Actually it tells me that the javascript ecosystem fails to build software that can adapt to change. The culture is to throw everything out and start fresh every time they want to do something different. It's terrible engineering.
Re: Next.js 13
#66Earlier quoted context omitted.
I'd rather spend a literal 6-character burden (alt="") to put an empty string in my little hobby projects than live in a world where non-hobby projects can skip adding alt. It should be very clear by just looking around on the internet that, when given the choice, accessibility will take a back seat.
I'm curious why you think that forcing people to write alt="" is going to improve accessibility?
Re: Next.js 13
#67Earlier quoted context omitted.
The HTML spec says it is required, even if you don’t think it should be required it is. https://html.spec.whatwg.org/multipage/images.html#alt
NextJS could just create alt="" when rendering the HTML element from their element.
Re: Next.js 13
#68// "alt" is now required for improved accessibility I'm all for accessibility, but let us decide when to implement it.
You should still be able to use alt="" to indicate that it is "decorative" and not meaningful imagery for a visually-impaired user.
Re: Next.js 13
#69Earlier quoted context omitted.
What I hate about javascript fatigue is that there's never enough time for something to mature before it gets replaced. Documentation always covers the basic scenarios and never any edge cases. Sooner or later you end up trying to find a solution in a github issue 20 pages down.
I think webpack is a special exception. It somehow revised the whole 5 major version and still don't get a proper plugin development document at all, not even basic one. You don't even have a flow graph that tells you events happen in which order. Everyone either Google and copy paste random example or reading the source by themselves. It always amazed me that such a big project can just live without docs.
an excuse not to write docs, ever
it's endemic in the majority of companies I've seen in the last 10 years
hopefully tooling (eg. docs.rs mostly automatically generated and pleasant to use) will help in the long term
Re: Next.js 13
#70Earlier quoted context omitted.
I'm quite alright with new tooling every six months when the new thing is orders of magnitude faster. If people want to compete to make my job as a frontend dev easier and faster, that is just fine .
Ideally we could learn how to make the existing tools better/faster and create software that can evolve rather than re-writing everything from scratch every six months.