Core

The full API is browsable here.

Core is an industrial-strength alternative to the OCaml standard library. It was developed by Jane Street, which is the largest industrial user of OCaml. Core works with Javascript. It provides an overlay on the usual namespace, so the best way to use it is to start your file with:

open! Core

Relationship between Core and Base

In sum:

Many of Core's modules are extensions of modules in Base, where the Core version adds bin_io support or locks in an API with Stable. Some modules, like Map, extend their Base equivalents to follow Core conventions for the use of comparators.