https://github.com/sgrove/wasmer-ocaml
https://github.com/sgrove/wasmer-ocaml
Last synced: about 1 year ago
JSON representation
- Host: GitHub
- URL: https://github.com/sgrove/wasmer-ocaml
- Owner: sgrove
- Created: 2020-08-05T05:59:17.000Z (almost 6 years ago)
- Default Branch: master
- Last Pushed: 2020-08-07T02:12:32.000Z (almost 6 years ago)
- Last Synced: 2025-04-04T19:53:50.689Z (about 1 year ago)
- Language: C
- Size: 97.7 KB
- Stars: 7
- Watchers: 1
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
- awesome-list - wasmer-ocaml
README
# wasmer-ocaml
[](https://circleci.com/gh/yourgithubhandle/wasmer-ocaml/tree/master)
**Contains the following libraries and executables:**
```
wasmer-ocaml@0.0.0
│
├─test/
│ name: TestWasmerOcaml.exe
│ main: TestWasmerOcaml
│ require: wasmer-ocaml.lib
│
├─library/
│ library name: wasmer-ocaml.lib
│ namespace: WasmerOcaml
│ require:
│
└─executable/
name: WasmerOcamlApp.exe
main: WasmerOcamlApp
require: wasmer-ocaml.lib
```
## Developing:
```
npm install -g esy
git clone
esy install
esy build
```
## Running Binary:
After building the project, you can run the main binary that is produced.
```
esy x WasmerOcamlApp.exe
```
## Running Tests:
```
# Runs the "test" command in `package.json`.
esy test
```