-
Notifications
You must be signed in to change notification settings - Fork 343
Expand file tree
/
Copy pathindex.njk
More file actions
16 lines (12 loc) · 900 Bytes
/
index.njk
File metadata and controls
16 lines (12 loc) · 900 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
---
navtitle: Blog
layout: layouts/home.njk
description: 'V8 is Google’s open source high-performance JavaScript and WebAssembly engine, written in C++.'
---
<h1>What is V8?</h1>
<p>V8 is Google’s open source high-performance JavaScript and WebAssembly engine, written in C++. It is used in Chrome and in Node.js, among others. It implements <a href="https://tc39.es/ecma262/">ECMAScript</a> and <a href="https://webassembly.github.io/spec/core/">WebAssembly</a>, and runs on Windows, macOS, and Linux systems that use x64, IA-32, or ARM processors. V8 can be embedded into any C++ application.</p>
<h2>Latest posts and feature explainers</h2>
{% set posts = collections.allPosts | head(10) %}
{% set start = collections.allPosts | length %}
{% include "posts.njk" %}
<p>More articles can be found in <a href="/blog">the blog archive</a> and <a href="/features">the features section</a>.</p>