Monday, May 11, 2020

Cloudflare Workers: V8 Isolates + WebAssembly + Rust

WebAssembly | Cloudflare Workers

Cloudflare Workers runs in V8 isolates, which support both WebAssembly and JavaScript. This documentation will get you up and running with Rust-generated WebAssembly.

Fine-Grained Sandboxing with V8 Isolates


v8: Isolate Class Reference


Here is what Cloudflare Workers do - YouTube
by Wes Bos

MDX = MD (Markdown) + JSX (React)

mdx-js/mdx: JSX in Markdown for ambitious projects

MDX is an authorable format that lets you seamlessly use JSX in your markdown documents. You can import components, like interactive charts or notifications, and export metadata. This makes writing long-form content with components a blast.

import { Chart } from '../components/chart'

# Heres a chart

The chart is rendered inside our MDX document.

<Chart />

What is MDX - YouTube

Using Expo in Gatsby