惯性聚合 高效追踪和阅读你感兴趣的博客、新闻、科技资讯
阅读原文 在惯性聚合中打开

推荐订阅源

博客园 - 司徒正美
大猫的无限游戏
大猫的无限游戏
腾讯CDC
J
Java Code Geeks
博客园 - 【当耐特】
Microsoft Azure Blog
Microsoft Azure Blog
V
Visual Studio Blog
人人都是产品经理
人人都是产品经理
博客园 - Franky
博客园 - 聂微东
阮一峰的网络日志
阮一峰的网络日志
美团技术团队
云风的 BLOG
云风的 BLOG
freeCodeCamp Programming Tutorials: Python, JavaScript, Git & More
U
Unit 42
雷峰网
雷峰网
B
Blog RSS Feed
博客园_首页
量子位
F
Fortinet All Blogs
罗磊的独立博客
H
Hackread – Cybersecurity News, Data Breaches, AI and More
酷 壳 – CoolShell
酷 壳 – CoolShell
C
Check Point Blog

Vercel News

Vercel Open Source Program: Winter 2026 cohort How Notion Workers run untrusted code at scale with Vercel Sandbox How we run Vercel's CDN in front of Discourse From idea to secure checkout in minutes with Stripe Building Slack agents can be easy Scaling redirects to infinity on Vercel Advancing Python typing Gamma builds design-first agents with Vercel How Avalara turns pipe dreams into patent-pending with v0 Keeping community human while scaling with agents How OpenEvidence built a healthcare AI that physicians actually trust Security boundaries in agentic architectures Skills Night: 69,000+ ways agents are getting smarter Video Generation with AI Gateway We Ralph Wiggumed WebStreams to make them 10x faster How Stably ships AI testing agents in hours, not weeks How we built AEO tracking for coding agents Anyone can build agents, but it takes a platform to run them Introducing Geist Pixel The Vercel AI Accelerator is back with $6m in credits Making agent-friendly pages with content negotiation The Vercel OSS Bug Bounty program is now available Introducing the new v0 Run untrusted code with Vercel Sandbox, now generally available How Stripe built a game-changing app in a single flight with v0 How Sensay went from zero to product in six weeks AGENTS.md outperforms skills in our agent evals Agent skills explained: An FAQ Testing if "bash is all you need" AWS databases are now live on the Vercel Marketplace and v0
Node.js 10 is Now Available - Vercel – Vercel
2019-06-25 · via Vercel News

2 min read

Link to headingHow to Upgrade

In order to have your code invoked with Node.js 10, you need only to add an engines field to your package.json file as follows:

{

"name": "my-app",

"engines": {

"node": "10.x"

}

}

As you can see, we have configured 10.x as the version, instead of the exact one.

This is possible because the engines property (as per the documentation) supports semantic version ranges in its syntax.

At the moment of writing, this will result in Node.js 10.15.3 being used.

NOTE: The range 10.x will allow new deployments to take advantage of security updates and features released to Node.js 10 LTS. It is not possible to pin a specific version at this time.

Link to headingSupported Builders

If your deployment uses one of the following Builders, you can opt into Node.js 10:

Link to headingWhat Has Changed

Node.js 10 includes several new features, such as a stable API for native addons, BigInt, a better way of creating Buffers, and version 6.0 of npm.

On your serverless function, however, the most noticeable improvement will be in performance (from Node.js 10 including V8 6.6).

As an example, Array.reduce is now much faster for holey double arrays:

Even a regular Promise will now be faster:

The performance metrics were retrieved from the v8 release post. For a full list of all changes, take a look at Auth0's release summary.

Link to headingConclusion

Our team is working hard to ensure that – every time a new Node.js release occurs – we provide you with the respective runtime for your serverless functions.

Make sure to update your existing deployments to Node.js 10 (as described above) and keep your eyes open for future Node.js updates via our Twitter page.

Should you have any questions, please let us know.