Vercel’s $150M Funding, Remix Open‑Source, and Key Front‑End Tools Explained
From Vercel’s $150 million Series D round cementing its role as a leading web‑dev platform, to Remix’s open‑source launch as a strong Next.js competitor, plus a practical guide to using the concurrently CLI for parallel Node processes and an introduction to TypeScript’s never type, this roundup covers the latest front‑end developments.
News
Vercel raises $150 M in Series D
Vercel, a leading platform for web developers, announced a $150 million Series D round, valuing the company at $2.5 billion. The company’s milestones include the launch of Now in 2016, successive versions of Next.js, and previous funding rounds.
Remix becomes open‑source
Remix, a full‑stack web framework created by the original React Router team, is now open‑source. Its key features include out‑of‑the‑box setup, SSR/SSG support, standards‑based web fundamentals, integrated development experience, resource preloading, and more.
Official documentation: Remix – Build Better Websites.
Open Source
Concurrently
Concurrently is a library that wraps
child_processto enable concurrent execution of commands.
It is useful for running multiple services, such as two Webpack dev servers, from a single terminal.
Example
package.jsonscripts:
<code>{
"scripts": {
"server_1": "node server_1.js",
"server_2": "node server_2.js"
}
}
</code>Using concurrently:
<code>{
"scripts": {
"server": "concurrently 'npm run server_1' 'npm run server_2'",
"server_1": "node server_1.js",
"server_2": "node server_2.js"
}
}
</code>Run
npm run serverto start both Node services simultaneously.
Article
TypeScript’s never type – Part 1
This article, part of “TypeScript’s Other Side: Type Programming”, explains the differences between
never,
any, and
unknowntypes, and demonstrates practical use‑cases for the
nevertype.
Taobao Frontend Technology
The frontend landscape is constantly evolving, with rapid innovations across familiar languages. Like us, your understanding of the frontend is continually refreshed. Join us on Taobao, a vibrant, all‑encompassing platform, to uncover limitless potential.
How this landed with the community
Was this worth your time?
0 Comments
Thoughtful readers leave field notes, pushback, and hard-won operational detail here.