Libraries & Publishing
ReScript libraries are just like JavaScript libraries: published & hosted on NPM. You can reuse your npm
, yarn
and package.json
-related tools to manage them!
Tips & Tricks
Publish
We recommend you to check in your compiled JavaScript output, for its various benefits. If not, then at least consider publishing the JavaScript output by un-ignoring them in your npmignore. This way, your published ReScript package comes with plain JavaScript files that JS users can consume. If your project's good, JS users might not even realize that they've installed a library written in ReScript!
In case your library is only consumed by JS users, you may want to check out our external stdlib configuration as well.
Find Libraries
Search rescript
-related packages on NPM, or use our Package Index.
If you can't find what you're looking for, remember that you don't need a wrapper to use a JS library:
Most JS data types, such as array and objects, map over cleanly to ReScript and vice-versa.
You also have access to the familiar JS API.
You can use a JavaScript library without needing to install dedicated binding libraries. Check the
external
page.