Earlier quoted context omitted.
I agree with this weird mismatch of overcomplexity for the problem it's trying to solve. I did really like though the Gatsby model of ingesting all your source data into GraphQL and then having a standardised way to query and build pages from this. I wish Next.js would learn something from this. I was using Next.js to build a staticly-generated website (so within the remit of Gatsby) but eventually i outgrew the limi…
That feels like the React community in a nutshell.
Vercel raise $40M Series B
161–170 of 208 posts
Re: Vercel raise $40M Series B
#162Earlier quoted context omitted.
Serverless web apps. Using their own Next.js as an example: everything in /pages/ is client app, everything in /api/ is serverless app. Client talks to the /api/ endpoints, /api/ endpoints talk to your domain services. Vercel also provide edge-location hosting and caching.
To be more precise: Vercel is the company (fka "Zeit"). They have a suite of complementary software products and services, including NextJS (a "batteries included" React framework with robust support for SSR and SSG), Now (hosting / CDN / runtime in "serverless" paradigm), Micro, etc. World-class DX and remarkably powerful tools that somehow combine simplicity and flexibility. No affiliation, just a longtime grateful…
Re: Vercel raise $40M Series B
#163Oh god. Even companies raising $40,000,000 can’t explain what they do: “Vercel combines the best developer experience with an obsessive focus on end-user performance. Our platform enables frontend teams to do their best work.” Nice, inspiring evocative words, but I care to find what the fuck Vercel IS, and this is not an answer. Maybe if I reword the above it will become clear: Vercel lets developers have a really gr…
They want enterprise customers, not single developers. So they use the usual bullshit marketing wordings. Their only goal is to get someone high level in a big company feeling the sentence is cool so that he lets his email in the "get demo" page. This is just normal enterprise sales, and this is probably why they managed to raise so much compared to most similar services. They really have a strong business focus and…
Re: Vercel raise $40M Series B
#164Maybe Next.js would move a bit towards this approach too
It's not free, though
Re: Vercel raise $40M Series B
#165Overall I really am impressed with Vercel, though. It's been a fun project/company to work with.
Re: Vercel raise $40M Series B
#166Earlier quoted context omitted.
I agree with this weird mismatch of overcomplexity for the problem it's trying to solve. I did really like though the Gatsby model of ingesting all your source data into GraphQL and then having a standardised way to query and build pages from this. I wish Next.js would learn something from this. I was using Next.js to build a staticly-generated website (so within the remit of Gatsby) but eventually i outgrew the limi…
I think for any commercial site, it's likely cheaper to use a platform like next or nuxt and a CDN rather than choking your build pipeline with static generation. You still get static performance and just offload it to an edge network and CDN costs are racing downwards.
https://nextjs.org/blog/next-9-5#stable-incremental-static-r...
(edit: whoops this was for the parent comment)
Re: Vercel raise $40M Series B
#167Earlier quoted context omitted.
It wasn't a "transition". They straight up killed features that would never work on 2, that worked on 1. For example, websockets. Turns out you can't do those in their ephemeral lambda model.
There are a variety of solutions for realtime w/ serverless: https://vercel.com/docs/solutions/realtime
Re: Vercel raise $40M Series B
#168Earlier quoted context omitted.
It wasn't a "transition". They straight up killed features that would never work on 2, that worked on 1. For example, websockets. Turns out you can't do those in their ephemeral lambda model.
There are a variety of solutions for realtime w/ serverless: https://vercel.com/docs/solutions/realtime
Re: Vercel raise $40M Series B
#169No offense, I think people are crazy to rely on a stack they can easily make themselves vs. a series B startup. It's not that difficult to build and deploy full stack apps on your own server.
how many times do we need to link to the dropbox comment before HN commenters get it? https://news.ycombinator.com/item?id=9224
Re: Vercel raise $40M Series B
#170Had to use Zeit/Vercel a few months for a “serious” project that requires SSR, caching and multiple staging environments. As the project progresses I noticed an increasing pain from constantly fighting with outdated documentations and limited configurability. I hope that’s changed now though, because there were some parts of Zeit that we loved. For simpler static sites, it’s hard to beat Netlify.