PRACTICAL WEBASSEMBLY : explore the fundamentals of webassembly programming using rust.
Understand the basic building blocks of WebAssembly and learn, install, and use various tools from the Rust and WebAssembly ecosystem Key Features Understand the Rust programming language and WebAssembly concepts for web development Build web, mobile, and embedded apps using WebAssembly Enhance the...
Clasificación: | Libro Electrónico |
---|---|
Autor principal: | |
Formato: | Electrónico eBook |
Idioma: | Inglés |
Publicado: |
[Place of publication not identified] :
PACKT PUBLISHING LIMITED,
2022.
|
Temas: | |
Acceso en línea: | Texto completo (Requiere registro previo con correo institucional) |
Tabla de Contenidos:
- Intro
- Title page
- Copyright and Credits
- Dedication
- Contributors
- Table of Contents
- Preface
- Section 1: Introduction to WebAssembly
- Chapter 1: Understanding LLVM
- Technical requirements
- Understanding compilers
- Compiled languages
- Compiler efficiency
- Exploring LLVM
- LLVM in action
- Summary
- Chapter 2: Understanding Emscripten
- Technical requirements
- Installing Emscripten using emsdk
- Generating asm.js using Emscripten
- Running Hello World with Emscripten in Node.js
- Running Hello World with Emscripten in the browser
- Exploring other options in emsdk
- Listing the tools and SDK
- Managing the tools and SDK
- Understanding various levels of optimizations
- Optimizations
- Closure Compiler
- Summary
- Chapter 3: Exploring WebAssembly Modules
- Technical requirements
- Understanding how WebAssembly works
- Understanding JavaScript execution inside the JavaScript engine
- Understanding WebAssembly execution inside the JavaScript engine
- Exploring the WebAssembly text format
- Building a function in WebAssembly text format
- Summary
- Section 2: WebAssembly Tools
- Chapter 4: Understanding WebAssembly Binary Toolkit
- Technical requirements
- Getting started with WABT
- Installing WABT
- Converting WAST into WASM
- Converting WASM into WAST
- f or
- fold-exprs
- Converting WASM into C
- simple.h
- simple.c
- Converting WAST into JSON
- Understanding a few other tools provided by WABT
- wasm-objdump
- wasm-strip
- wasm-validate
- wasm-interp
- Summary
- Chapter 5: Understanding Sections in WebAssembly Modules
- Technical requirements
- Exports and imports
- Exports
- Imports
- Globals
- Start
- Memory
- Summary
- Chapter 6: Installing and Using Binaryen
- Technical requirements
- Installing and using Binaryen
- Linux/macOS
- Windows
- wasm-as
- wasm-dis
- wasm-opt
- wasm2js
- Summary
- Section 3: Rust and WebAssembly
- Chapter 7: Integrating Rust with WebAssembly
- Technical requirements
- Installing Rust
- Converting Rust into WebAssembly via rustc
- Converting Rust into WebAssembly via Cargo
- Installing wasm-bindgen
- Converting Rust into WebAssembly via wasm-bindgen
- Summary
- Chapter 8: Bundling WebAssembly Using wasm-pack
- Technical requirements
- Bundling WebAssembly modules with webpack
- Bundling WebAssembly modules with Parcel
- Introducing wasm-pack
- Why do you need wasm-pack?
- How to use wasm-pack
- Packing and publishing using wasm-pack
- Summary
- Chapter 9: Crossing the Boundary between Rust and WebAssembly
- Technical requirements
- Sharing classes from Rust with JavaScript
- Sharing classes from JavaScript with Rust
- Calling the JavaScript API via WebAssembly
- Calling closures via WebAssembly
- Importing the JavaScript function into Rust
- Calling a web API via WebAssembly
- Summary