@leaningtech/cheerpx 0.2.0

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.
package/LICENSE.txt ADDED
@@ -0,0 +1 @@
1
+ Proprietary
package/README.md ADDED
@@ -0,0 +1,28 @@
1
+ <h1><img src="assets/logotype.svg" alt="CheerpX" height="96"></h1>
2
+
3
+ [![Discord server](https://img.shields.io/discord/988743885121548329?color=%237289DA&logo=discord&logoColor=ffffff)](https://discord.leaningtech.com)
4
+ [![GitHub Issues](https://img.shields.io/github/issues/leaningtech/cheerpx-meta.svg)](https://github.com/leaningtech/cheerpX-meta/issues)
5
+ [![npm](https://img.shields.io/npm/v/cheerpx)](https://npm.im/cheerpx)
6
+
7
+ CheerpX enables running X86 binary applications and libraries in the browser within a secure WebAssembly sandbox.
8
+
9
+ [Documentation](https://cheerpx.io/docs)
10
+ [Issues](https://github.com/leaningtech/cheerpx-meta/issues)
11
+ [Discord server](https://discord.leaningtech.com)
12
+
13
+ ## What is CheerpX?
14
+
15
+ CheerpX is a powerful X86 virtualization library designed to run unmodified binary applications and libraries in the browser. It leverages a WebAssembly-based sandbox and standard browser APIs to ensure security, even when executing untrusted code. CheerpX supports Linux-compatible system calls and can run many common applications, including complete Linux distributions.
16
+
17
+ CheerpX features an advanced Just-In-Time compiler that dynamically translates X86 code to WebAssembly as needed. This engine is highly robust, capable of handling dynamically generated and self-modifying code.
18
+
19
+ To see CheerpX in action, visit [WebVM](https://webvm.io) for shell access to a complete Debian machine running in the browser.
20
+
21
+ ## Limitations
22
+
23
+ * Currently, only 32-bit x86 binaries are supported. Future updates will include support for 64-bit binaries and other architectures.
24
+ * 3D accelerated graphics are not yet supported.
25
+
26
+ ## Licensing
27
+
28
+ CheerpX is proprietary software and it's free to use only for personal and open-source projects. Commercial support, feature fast tracking, sponsored development and consulting packages are available for Enterprise customers.
package/package.json ADDED
@@ -0,0 +1,32 @@
1
+ {
2
+ "name": "@leaningtech/cheerpx",
3
+ "version": "0.2.0",
4
+ "type": "module",
5
+ "main": "src/index.js",
6
+ "description": "Run X86 binary applications and libraries in the browser",
7
+ "repository": {
8
+ "type": "git",
9
+ "url": "git+https://github.com/leaningtech/cheerpx-meta.git"
10
+ },
11
+ "files": [
12
+ "LICENSE.txt",
13
+ "README.md",
14
+ "src/index.js"
15
+ ],
16
+ "keywords": [
17
+ "webassembly",
18
+ "x86",
19
+ "virtualization",
20
+ "jit",
21
+ "compiler",
22
+ "wasm",
23
+ "leaningtech"
24
+ ],
25
+ "scripts": {
26
+ "prepack": "cp -rv ../../README.md ../../LICENSE.txt ../../src/ ."
27
+ },
28
+ "author": "Leaning Technologies",
29
+ "license": "SEE LICENSE IN LICENSE.txt",
30
+ "bugs": "https://github.com/leaningtech/cheerpx-meta/issues",
31
+ "homepage": "https://cheerpx.io"
32
+ }
package/src/index.js ADDED
@@ -0,0 +1,3 @@
1
+ import CheerpX from 'https://cxrtnc.leaningtech.com/0.8.4/cx.esm.js';
2
+ debugger;
3
+ export default CheerpX;