v86 0.5.303 → 0.5.305

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (2) hide show
  1. package/Readme.md +7 -0
  2. package/package.json +1 -1
package/Readme.md CHANGED
@@ -129,6 +129,13 @@ for a full setup on Debian or
129
129
  to serve the files using Python's http module.
130
130
  - If you only want to embed v86 in a webpage you can use `libv86.js`. For usage,
131
131
  check out the [examples](examples/). You can download it from the [release section](https://github.com/copy/v86/releases).
132
+ - For bundler-based setups (Vite/React/Next/Webpack), there is also an official npm package:
133
+ https://www.npmjs.com/package/v86
134
+
135
+ This package was originally maintained by [@giulioz](https://github.com/giulioz) (bundler-optimized fork) and was made "official" for this repo by [@basicer](https://github.com/basicer) with the author's permission.
136
+ It is published automatically from this repository via GitHub Actions ([.github/workflows/ci.yml](.github/workflows/ci.yml), Upload release job) on pushes to `master` and uses `npm publish --provenance`.
137
+
138
+ Install: `npm install v86`
132
139
 
133
140
  ### Alternatively, to build using Docker
134
141
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "v86",
3
- "version": "0.5.303+g4d03c8b",
3
+ "version": "0.5.305+g5ae7487",
4
4
  "license": "BSD-2-Clause",
5
5
  "description": "x86 PC emulator and x86-to-wasm JIT, running in the browser",
6
6
  "homepage": "https://copy.sh/v86/",