An opam plugin to allow using the depexts
field to define requirements on
npm packages.
This plugin aims to solve a simple limitation: how to allow libraries written for either Melange or Js_of_ocaml to define dependencies to JavaScript packages. It addresses the problem by enabling library authors to leverage the depexts field in opam files to define dependencies on npm packages.
Constraints are defined by adding an entry to depexts
with the npm package
name as the "system package" and an equality formula that matches the
npm-version
variable to a version range. This range can be defined using the
same format as the dependencies
field in a
package.json
file 1.
For example, the reason-react
bindings can define their dependency on the
react
npm package like this:
depexts: [
["react"] {npm-version = "^16.0.0 || ^17.0.0"}
["react-dom"] {npm-version = "^16.0.0 || ^17.0.0"}
]
Or, to simplify:
depexts: [
["react" "react-dom"] {npm-version = "^16.0.0 || ^17.0.0"}
]
Users can check the state of the npm dependencies by running the plugin:
$ opam-check-npm-deps
Ok: opam package "test.dev" requires the npm package "react" with constraint "^16.0.0 || ^17.0.0", installed version: "17.0.2"
Ok: opam package "test.dev" requires the npm package "react-dom" with constraint "^16.0.0 || ^17.0.0", installed version: "17.0.2"
The plugin will provide information when errors occur:
$ opam-check-npm-deps
Error: opam package "test.dev" requires the npm package "react" with constraint "^16.0.0 || ^17.0.0", but the installed version found in the "node_modules/react/package.json" file is "18.2.0"
Error: opam package "test.dev" requires the npm package "react-dom" with constraint "^16.0.0 || ^17.0.0", but the installed version found in the "node_modules/react-dom/package.json" file is "18.2.0"
When running the plugin, it checks the current opam switch to read all depexts
fields that use the npm-version
variable, and then reads the node_modules
folder to determine if the constraints are satisfied.
If you don't want to the command to fail when errors are found, use the
--dry-run
flag:
$ opam-check-npm-deps --dry-run
$ make init
$ make watch
You can see all available commands by running make help
or just make
. Here
are a few of the most useful ones:
make init
: set up opam local switch and download OCaml, Melange and JavaScript dependenciesmake install
: install OCaml dependenciesmake watch
: watch for the filesystem and have Dune rebuild on every change
Footnotes
-
Special thanks to the esy authors and contributors, as the plugin reuses many of esy's libraries to analyze constraints in a format compatible with
package.json
files. ↩