Skip to content

Dead-simple example how to debug your Ocaml code after compilation to JS

Notifications You must be signed in to change notification settings

tte/js_of_ocaml-debug-sourcemaps-example

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

9 Commits
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Js_of_ocaml debug with sourcemaps example

🐫 Ocaml -> 💻 byte.code w/ debug info -> 🍩 JS w/ sourcemaps

Intro

Dead-simple example how to use debugger with sourcemaps.

Installation

First, clone the project:

$ git clone https://github.com/tte/js_of_ocaml-debug-sourcemaps-example.git <my-project-name>
$ cd <my-project-name>

Make sure that you have already installed opam and js_of_ocaml package

$ opam install js_of_ocaml

Then install node-inspector for debugging.

$ npm i -g node-inspector

Run

$ make run

This command will compile byte code w/ debuginfo to _build folder. After success compilation js_of_ocaml will handle your byte code w/ sourcemaps. Ok, we have already compiled main.js file and we can easily debug this with node-debug.

$ node-debug main.js

You should see output with endpoint to your localhost.

Node Inspector v0.12.8
Visit http://127.0.0.1:8080/?port=5858 to start debugging.
Debugging `main.js`

Debugger listening on port 5858

In our module Foo.ml we are using js_of_ocaml function Js.debugger. Execution of your program will stop at this point and you can check ml files in browser's console.

Other commands

$ make recompile
$ make clear

Notes

If you have any questions or suggestions, just use issue tracker or make PR.

Based on official docs of js_of_ocaml. For more explanations check this notes:

https://ocsigen.org/js_of_ocaml/dev/manual/debug

https://www.npmjs.com/package/node-inspector

https://nodejs.org/api/debugger.html

About

Dead-simple example how to debug your Ocaml code after compilation to JS

Topics

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages