mirror of
https://github.com/LukeHagar/wasm-overhead-research.git
synced 2025-12-06 04:22:06 +00:00
- 5 different JS-to-WASM implementations analyzed - QuickJS (283KB) and Javy Static (519KB) are Wasmer-compatible - Comprehensive size analysis and runtime compatibility testing - Complete documentation and build automation - Wasmer v6.1.0-rc.2 dynamic linking analysis included
99 lines
1.0 KiB
Plaintext
99 lines
1.0 KiB
Plaintext
# WASM Build Artifacts
|
|
*.wasm
|
|
*.cwasm
|
|
*.wasm.gz
|
|
|
|
# Go Build Artifacts
|
|
*.exe
|
|
*.exe~
|
|
*.dll
|
|
*.so
|
|
*.dylib
|
|
*.test
|
|
*.out
|
|
go.work
|
|
|
|
# Rust Build Artifacts
|
|
/target/
|
|
**/**/target/
|
|
Cargo.lock
|
|
*.pdb
|
|
|
|
# Node.js
|
|
node_modules/
|
|
npm-debug.log*
|
|
yarn-debug.log*
|
|
yarn-error.log*
|
|
.pnpm-debug.log*
|
|
package-lock.json
|
|
yarn.lock
|
|
pnpm-lock.yaml
|
|
|
|
# Environment files
|
|
.env
|
|
.env.local
|
|
.env.development.local
|
|
.env.test.local
|
|
.env.production.local
|
|
|
|
# IDE and Editor files
|
|
.vscode/
|
|
.idea/
|
|
*.swp
|
|
*.swo
|
|
*~
|
|
|
|
# OS generated files
|
|
.DS_Store
|
|
.DS_Store?
|
|
._*
|
|
.Spotlight-V100
|
|
.Trashes
|
|
ehthumbs.db
|
|
Thumbs.db
|
|
|
|
# Temporary files
|
|
*.tmp
|
|
*.temp
|
|
*.log
|
|
|
|
# Test coverage
|
|
coverage/
|
|
*.lcov
|
|
|
|
# Build directories
|
|
build/
|
|
dist/
|
|
out/
|
|
|
|
# Cache directories
|
|
.cache/
|
|
.parcel-cache/
|
|
|
|
# Wasmer cache
|
|
.wasmer/
|
|
|
|
# TinyGo cache
|
|
.tinygo-cache/
|
|
|
|
# Optimization artifacts
|
|
*_opt.wasm
|
|
*_optimized.wasm
|
|
|
|
# Compressed files (keep source, ignore generated)
|
|
*.gz
|
|
*.bz2
|
|
*.xz
|
|
|
|
# Benchmark results
|
|
benchmark-results/
|
|
*.bench
|
|
|
|
# Documentation build artifacts
|
|
docs/_build/
|
|
site/
|
|
|
|
# Local development
|
|
local/
|
|
scratch/
|
|
tmp/ |