Ranked awesome lists, all in one place
This list is a copy of rizo/awesome-ocaml with ranks
Awesome OCaml β 87749 =============
Everything youβll ever need on the road to mastering OCaml.
A curated list of references to awesome OCaml tools, frameworks, libraries and articles. Additionally there is a collection of freely available books, papers and presentations.
If youβre looking for comprehensive community-driven content about OCaml visit πOCamlverse!
For a quick intorduction to the modern OCaml development workflow consult the OCaml for the impatient guide.
Your favorite package is not listed? Fork and create a Pull Request to add it!
Contents
- Community
- Algorithms and Data Structures
- Application Libraries
- Blogs
- Books
- Code Analysis and Linters
- Compilers and Compiler Tools
- Concurrency
- Databases
- Datetime
- Developer Tools
- Exercises
- Formal Software Verification
- General
- Graphics
- User Interface
- Language-related
- Logging
- Messaging
- Metaprogramming
- Mobile Applications
- Networking
- Online Courses
- Package Management
- Parallelism
- Questions
- Regular Expressions
- Science and Technical Computing
- Security and Cryptography
- Semantic Technology
- Serialization
- System Programming
- Testing
- Web Development
Community
- Official OCaml Website
- OCaml Discourse Web Forum
- OCaml Discord Chat
- Official OCaml Mailing List
- OCaml Planet
- OCaml SubReddit
Algorithms and Data Structures
- Comparing a Machine Learning Algorithm Implemented in F# and OCaml
- OCamlgraph β 110 β A generic graph library for OCaml.
- ods β 19 β A large collection of data structures and algorithms for OCaml.
- combine β 17 β³2Y β OCaml library for combinatorics https://www.lri.fr/~filliatr/combine/.
- Decompress - A pure OCaml implementation of Zlib
Application Libraries
- Batteries Included β 331 β A community-maintained foundation library for your OCaml projects.
- Cmdliner β 86 β Declarative definition of command line interfaces for OCaml.
- Core β Jane Street Capitalβs full-fledged standard library overlay. A portable subset of Core is also available: Core_kernel β 132.
- Base β 193 - Jane Street Capitalβs dependency-free, quick-compiling, fully-portable across any environment that can run OCaml code standard library.
- React β React is an OCaml module for functional reactive programming (FRP). It provides support to program with time varying values: declarative events and signals.
- Minicli β 8 β Minimalist library for command line parsing.
- ctypes β 189 β Library for binding to C libraries using pure OCaml.
- easy-format β 19 β Pretty-printing library for OCaml.
- ocaml-rpc β 43 β Light library to deal with RPCs in OCaml.
- ocaml-containers β 189 β A lightweight, modular standard library extension, string library and interfaces to various libraries (bigarrays, unix, etcβ¦). BSD license.
Blogs
Books
- More OCaml: Algorithms, Methods, and Diversions β In More OCaml John Whitington takes a meandering tour of functional programming with OCaml, introducing various language features and describing some classic algorithms. The book ends with a large worked example dealing with the production of PDF files. There are questions for each chapter together with worked answers and hints.
- How to Think Like a (Functional) Programmer by Allen Downey and Nicholas Monje β How to Think Like a Computer Scientist is an introductory programming textbook based on the OCaml language. It is a modified version of Think Python by Allen Downey. It is intended for newcomers to programming and also those who know some programming but want to learn programming in the function-oriented paradigm, or those who simply want to learn OCaml.
- OCaml from the Very Beginning by J. Whitington - OCaml from the Very Beginning will appeal both to new programmers, and experienced programmers eager to explore functional languages such as OCaml.
- Pearls of Functional Algorithm Design by Richard Bird - It summaries 30 hard algorithm problems in function programming world. Although it is for Haskell, the algorithm problems are very interesting and trying to solve them in OCaml also helps the thinking of functional programming. Partial solutions in OCaml are here β 15 β³3Y.
- Real World OCaml by Y. Minsky, A. Madhavapeddy and J. Hickey - Functional programming for the masses.
- Unix System Programming in OCaml by X. Leroy and D. RΓ©my β Introduction to Unix system programming, with an emphasis on communications between processes.
- Using, Understanding, and Unraveling OCaml β This book describes both the OCaml language and the theoretical grounds behind its powerful type system.
- Purely Functional Data Structures - This is the first or only book focus on various data structures in FP world. A must-read one.
- OCaml for Scientists - by Jon Harrod.
Code Analysis and Linters
- Mascot - Mascot is a style-checker for OCaml sources
- pfff β 2226 β³1Y β pfff is a set of tools and APIs to perform some static analysis, dynamic analysis, code visualizations, code navigations, or style-preserving source-to-source transformations such as refactorings on source code.
- infer β 8598 - infer is a static analyzer for Java, C and Objective-C
- flow β 16682 - flow is a static type checker for JavaScript
- Ocamllint β 61 - Ocamllint detects common errors in OCaml code
- BetterErrors - BetterErrors improves error messages of the OCaml compiler (Make OCaml Errors Great Again.)
- SLAyer β 300 β³2Y - SLAyer is an automatic formal verification tool that uses separation logic to verify memory safety of C programs.
- MemCAD β 9 - MemCAD is an abstract interpreter for shape analysis. MemCAD can verify C programs manipulating complex data structures.
- BAP β 649 - BAP is a reverse engineering and program analysis platform that targets binary programs.
Compilers and Compiler Tools
-
Languages and Compilers:
- cDuce - cDuce is a modern XML-oriented functional language with innovative features.
- Compcert C Compiler - It is a C Compiler supporting most of the ISO C90 and C99 / ANSI C features.
- Eff Programming Language - Eff is a functional language with handlers of not only exceptions, but also of other computational effects such as state or I/O.
- Hack Programming Language
- Haxe Programming Language
- Neko Programming Language - Originally the compiler was written in OCaml.
- Mezzo Programming Language - Mezzo is a programming language in the ML tradition, which places strong emphasis on the control of aliasing and access to mutable memory.
- OCaml-Java - OCaml to Java bytecode compiler.
- Opa Programming Language
- Rhine β 585 β³3Y β A Lisp on LLVM written in OCaml.
- Rust Programming Language - Originally written in OCaml before bootstrapping.
- Quick Cβ Target Language - It is now a dead project. Github Repo β 70 β³4Y. Alternative website.
- tis-interpreter β 473 β³1Y - An interpreter for finding subtle bugs in programs written in standard C
- Reason - Friendly syntax & toolchain for OCaml by Facebook.
- Others - Some other compilers implemented in OCaml, quite a few dead now.
-
Parser and Lexer Generators:
- Opal β 74 β³1Y β Self-contained monadic parser combinators for OCaml.
- Sedlex β 86 is a modern, encoding-agnostic (read: Unicode-supporting) lexer generator (the ppx-based successor to ulex.)
-
Menhir β Menhir is a LR(1) parser generator for OCaml.
- See ocaml-parsing β 28 for a clearer example of using Menhir and Sedlex to produce a useful parser,
- β¦ and Obelisk β 13, a neat project to produce readable LaTeX, HTML, or plain-text EBNF-style documentation for your grammar.
- ocamllex/ocamlyacc β lex and yacc implementation for OCaml.
- Angstrom β 203 - Parser combinators built for speed and memory efficiency
- Articles:
Concurrency
Two concurrency libraries exist in OCaml: Lwt and Async. They provide very similar functionality but make radically different decisions with regards to error handling and internal implementation details (see the links below for more details). Real World OCaml uses Async but a version of the code examples translated to Lwt β 54 β³1Y is also available.
- Libraries:
- Articles:
Databases
-
Bindings
- Dbm β A binding to the NDBM/GDBM Unix βdatabasesβ.
- Mongo.ml β An OCaml driver for Mongodb
-
PGβOCaml β A type-safe interface to PostgreSQL in pure OCaml.
- ppx_pgsql β 24 β A syntax extension for embedded SQL queries using PGβOCaml.
-
PostgreSQL-OCaml β An interface to PostgreSQL through the C API (
libpq
). - SQLite3 β 43 β OCaml bindings to the SQLite3 database.
- Sqlite3EZ β Thin wrapper for SQLite3 with a simplified interface.
- ocaml-redis β 32 β Redis bindings for OCaml.
- mysql β Bindings to libmysqlclient for interacting with MySQL databases.
- mysql_protocol β 7 β Implementation of MySQL Protocol with the Bitstring library.
-
New Implementations
- Irmin β 875 β A distributed database that follows the same design principles as Git.
- Obigstore β A database with BigTable-like data model atop LevelDB.
- RunOrg β 9 β³3Y - It is a WIP database server written in OCaml.
-
Overlays
- Macaque β 27 β³2Y β Macaque is a library for safe and flexible database queries using comprehensions on top of PGβOCaml.
- ORM β 36 β³2Y β ORM for SQLite.
- Articles:
Datetime
Developer Tools
- Try OCaml β Try OCaml in your web browser.
- codingground β Compile and execute OCaml code online.
- iocaml β 158 β An OCaml kernel for the IPython notebook.
- utop β 411 β Universal toplevel for OCaml with support of multiline edition, history, real-time and context sensitive completion, colors, and more.
- ocamlbrowser β A source and compiled interface browser, written using LablTk. Included in the standard distribution for ocaml <= 4.01 and with labltk for ocaml >= 4.02.
- ghim β 16 β³4Y β A command-line tool to manage Github Issues.
- OCaml Yeoman Generator β Yeoman generator to scaffold OCaml modules.
-
Foreign Function Interface:
- ocaml-main-program-in-c β 12 β Example build system for making mixed C/Ocaml binaries where the main program is in C.
- Modular foreign function bindings
-
Editor Integration:
- merlin β 863 β Context sensitive completion for Ocaml in Vim and Emacs.
- tuareg β 188 - OCaml mode for Emacs that can run the toplevel and the debugger within Emacs.
- vscode-ocaml β extension that provides OCaml language support for VSCode β 52333
- Sublime better ocaml β 15 β Better OCaml mode for Sublime Text.
-
ocp-index β Easy access to the interface information of installed OCaml libraries. Provides standalone tools like
ocp-browser
andocp-grep
.- ocp-browser β Small ncurses-based API and documentation browser.
- ocp-index-top β 14 β Toplevel directive for looking up documentation using ocp-index.
- Sublime text package
- ocp-indent β Indentation tool for OCaml, to be used from editors like Emacs and Vim.
-
Code coverage:
- Bisect
- Bisect_ppx β 1 β³1Y a more recent fork of the previous tool.
Exercises
- 99 problems. 99% solutions are here β 16 β³3Y.
- Rosetta Code
- OCaml at Exercism β Exercism is your place to engage in thoughtful conversations about code. Explore simplicity, idiomatic language features, and expressive readable code. Solutions.
Formal Software Verification
- Coq β Coq is a formal proof management system. It provides a formal language to write mathematical definitions, executable algorithms and theorems together with an environment for semi-interactive development of machine-checked proofs.
- Why3 β Why3 is a platform for deductive program verification. It provides a rich language for specification and programming, called WhyML, and relies on external theorem provers, both automated and interactive, to discharge verification conditions.
- Alt-Ergo β Alt-Ergo is an open-source SMT solver dedicated to the proof of mathematical formulas generated in the context of program verification.
General
- Functional Programming with OCaml
- Python to OCaml: retrospective
- OCaml for the Masses
- Why We Use OCaml
- Why OCaml?
- Xen β OCaml Coding Considerations
- Monads are a class of hard drugs
- Beginnerβs guide to OCaml
- Why OCaml, why now?
- A blog about game development in OCaml
- (Functional) Alternatives to inheritance
- camlPDF β 78 β OCaml library for reading, writing and modifying PDF files.
- capnp-ocaml 2.0: The Road to Unembarrassing Performance
- slacko β 50 β A neat interface for Slack in OCaml.
- Learn X in Y minutes - Where X=OCaml.
Graphics
-
2D
- archimedes β 2D plotting library.
- cairo2 β 17 β Binding to Cairo, a 2D Vector Graphics Library. Integrates well with lablgtk.
- Vg β 42 β Declarative 2D vector graphics for OCaml.
- 3D
User Interface
- lablgtk β GTK2 bindings for OCaml with various higher-level facilities to define GUIs.
- lablqml β 88 β QML Qt5 bindings for OCaml.
- labltk β Interface to the Tcl/Tk GUI framework. In the standard distribution for ocaml <= 4.01.
- TSDL β Tsdl is an OCaml module providing thin bindings to the cross-platform SDL library.
- Lambda-Term β 89 β Lambda-Term is a cross-platform library for manipulating the terminal. It provides an abstraction for keys, mouse events, colors, as well as a set of widgets to write curses-like applications.
- Notty β 148 - Notty is a declarative terminal library for OCaml, structured around a notion of composable images.
Language-related
- Higher-Rank Polymorphism in OCaml
- mikmatch β 20 β³1Y β OCaml pattern-matching extended with regexps
- Inlined records in constructors
- Algebraic Data Types
- XEN β OCaml Best Practices for Developers
- OCaml Style Guide - See also: [1], [2], [3].
- A safe but strange way of modifying OCaml compiler
- Fiddling with the OCaml Type System
Logging
- dolog β 23 β³1Y β A dumb OCaml logger.
- Volt β 3 β A variant of Bolt OCaml logging tool.
- Logs - Logs provides a logging infrastructure for OCaml.
Messaging
-
ZeroMQ:
- ocaml-zmq β 50 β ZeroMQ bindings for OCaml.
- async-zmq β 11 β Async wrapper around ocaml-zmq.
- lwt-zmq β 16 β³1Y β Lwt-friendly interface to ZeroMQ for OCaml.
- onanomsg β 31 β nanomsg bindings for OCaml.
- Kafka β 26 β OCaml bindings for Apache Kafka.
- AMQP β 38 β AMQP client library for Async and Lwt.
- MPI β 10 β Message Passing Interface bindings for OCaml.
- MQTT β 12 β OCaml implementation of the MQTT pubsub protocol.
Metaprogramming
- Articles:
-
Syntax Extensions:
- ppx_import β Import is a syntax extension that allows to pull in types or signatures from other compiled interface files.
-
ppx_string_interpolate β
7 β³3Y β A simple ppx filter to support string interpolation like
[%str "value of foo is $(foo)"]
. - ppx_monad β 3 β³1Y β Monad syntax extension for OCaml.
- ppx_deriving_yojson β A Yojson codec generator for OCaml.
-
Tools and Language Extensions:
- MetaOCaml β an OCaml dialect for multi-stage programming.
- Fan β Fan is a compile-time metaprogramming system for OCaml, originally inspired from Camlp4. Itβs a combination of OCaml and Lispy Macros. It shares the same concrete syntax with OCaml.
- camlp5 - Camlp5 is a preprocessor-pretty-printer of OCaml.
- camlp4 - Camlp4 is part of the standard OCaml distribution and is different from Camlp5.
Mobile Applications
- Articles:
-
Bindings:
- Cordova plugins β 19 β³1Y β List of bindings to Cordova plugins. Get access to native device components like accelerometer, SMS, geolocation, etc in OCaml.
Networking
-
HTTP Tools:
- ocaml-cohttp β 346 β Very lightweight HTTP server using Lwt or Async.
- ocurl β 28 β OCaml bindings to libcurl.
- httpaf β 135 β A high performance, memory efficient, and scalable web server written in OCaml.
- ocaml-dns β 47 β A pure OCaml implementation of the DNS protocol.
- fluent-logger β 5 β³3Y β Fluentd logger for OCaml.
- charrua-unix - charrua-unix is a Unix DHCP daemon based on charrua-core.
Online Courses
- Introduction to Functional Programming in OCaml.
- Cornell University β Data Structures and Functional Programming.
- Princeton University - Functional programming in OCaml.
- University of Illinois - Course that uses OCaml to teach functional programming and programming language design
Package Management
-
Distribution:
- OPAM β A flexible Git-friendly package manager with multiple compiler support.
- ocamlfind β Local OCaml library manager. Used by most of the OCaml ecosystem.
- OCaml for Windows - opam repository and experimental build for Windows.
- makorel β 8 β³3Y β Release OPAM packages easily.
-
Build Tools:
-
Oasis - A tool to integrate a configure, build and install system in your OCaml project. It helps to create standard entry points in your build system and allows external tools to analyse your project easily.
- oasis2opam β 27 β Tool to convert OASIS metadata to OPAM package descriptions.
- obuild β 40 β Simple package build system for ocaml.
- dune β 349 β A composable and opinionated build system for OCaml (former jbuilder)
- jenga β 84 β Monadic build system from Jane Street.
- ocamlbuild β Build system provided with the compiler.
- ocaml-makefile β 51 β Easy to use Makefile for small to medium-sized OCaml-projects.
- topkg β 60 β OPAM-aware packaging system using ocamlbuild.
- Namespaces β 63 - ocamlbuild plugin that converts your directory tree into nested modules.
- Bazel β 23 - OCaml rules for Bazel, Googleβs multi-language and platform build tool.
-
Oasis - A tool to integrate a configure, build and install system in your OCaml project. It helps to create standard entry points in your build system and allows external tools to analyse your project easily.
Parallelism
(Note: Sorted from the easier to use to the more flexible.)
-
Libraries:
- Parmap β Provides easy-to-use parallel map and fold functions.
- ForkWork β 20 β³5Y β A simple library for forking child processes to perform work on multiple cores.
- Functory β A distributed computing library which facilitates distributed execution of parallelizable computations in a seamless fashion.
- Rpc.Parallel β 27 β A library for spawning processes on a cluster of machines, and passing typed messages between them.
-
Ocamlnet β An enhanced system platform library. Contains the
netmulticore
library to compute tasks on as many cores of the machine as needed. - Nproc β 25 β³4Y β Process pool implementation for OCaml.
- Parany β 16 β Parallelize computation over independent items, even if there is an infinite number of them.
- Sklml β Functional parallel skeleton compiler and programming system for OCaml programs.
- Articles:
Questions
Science and Technical Computing
- biocaml β 81 β OCaml Bioinformatics Library http://biocaml.org.
- guizmin β 4 β³1Y β OCaml library for building bioinformatics pipelines.
- lacaml - OCaml bindings for BLAS/LAPACK (high-performance linear algebra Fortran libraries).
- obandit - OCaml library for multi-armed bandits.
- onumerical β 7 β³4Y β Numerical library for OCaml.
- oml - OCaml library for general numerical work.
-
ocephes β
9 β³2Y - Bindings to frequently used
C
special funcitons library. - slap β 52 - A linear algebra library in OCaml with type-based static size checking for matrix operations.
- tensorflow-ocaml β 157 β OCaml bindings for TensorFlow.
- owl - OCaml numerical library: dense and sparse matrix, linear algebra, regressions, maths and stats functions.
Regular Expressions
- Re β 106 β a pure OCaml regular expressions library with combinators, supporting several formats (glob, posix, strβ¦)
- ocaml-pcre β 15 β bindings to the PCRE library (perl-compatible regular expressions)
- Humane-re β 18 β³2Y β Humane-re attempts to provide an easy interface for 90% of your regex needs Courtesy of ocaml-re
- Tyre β 104 β³1Y - Tyre is a set of combinators to build type-safe regular expressions, allowing automatic extraction and modification of matched groups.
Security and Cryptography
- ocaml-tls β 199 β TLS in pure OCaml.
- Digestif β 26 - Hash algorithms (like SHA* or BLAKE2*) in OCaml and C.
- cryptokit β 31 β The Cryptokit library for OCaml provides a variety of cryptographic primitives that can be used to implement cryptographic protocols in security-sensitive applications.
- nocrypto β 66 β A small cryptographic library behind the ocaml-tls project. It is built to be straightforward to use, adhere to functional programming principles and able to run in a Xen-based unikernel.
Note: The differences between
nocrypto
andcryptokit
cryptographic libraries are described in the following blog post: OCaml-TLS: building the nocrypto library core.
Semantic Technology
- OCaml-RDF β OCaml library to manipulate RDF graphs and execute Sparql queries.
Serialization
- bencode β 12 β Bencode (.torrent file format) reader/writer.
- biniou β 27 β Extensible binary data format, like JSON but faster.
- jsonm β Non-blocking streaming JSON codec for OCaml.
- xmlm β A streaming codec to decode and encode the XML data format.
- yojson β 102 β An optimized parsing and printing library for the JSON format.
- sexplib β 72 β A S-expression parser and printer
System Programming
- Mirage OS β 1086 β Mirage is a programming framework for constructing secure, high-performance network applications across a variety of cloud computing and mobile platforms.
- ocaml-fat β 11 β Read and write FAT format filesystems from OCaml.
- ocaml-git β 186 β Pure OCaml low-level git bindings.
- ocaml-vchan β 25 β Pure OCaml implementation of the βvchanβ shared-memory communication protocol.
Testing
- Alcotest β 0 β A lightweight and colourful test framework.
- OUnit β OUnit is a unit test framework for OCaml. It allows one to easily create unit-tests for OCaml code. It is based on HUnit, a unit testing framework for Haskell.
- QCheck β 76 β QCheck is a property testing library inspired from Haskellβs QuickCheck
- iTeML (formerly known as qtest) β supports inline pragmaβs to generate tests.
- Kaputt β comprehensive testing framework.
- Pa_test β General inline testing macroβs.
- TestSimple β 7 β³3Y - A lightweight unit testing framework compatible with the Test Anything Protocol.
Web Development
-
Frameworks:
- Opium β 341 β Sinatra like web toolkit for OCaml.
- Ocsigen Eliom β Eliom is a full-featured multi-tier framework, for developing multi-platform Web and mobile apps as 100% OCaml distributed applications. It can also be used for more traditional Web or mobile apps: Web sites, single page applications, REST API, etc.
- Ohm - Ohm was an open source web framework for the OCaml language which is now dead.
- webmachine β 145 β A REST toolkit for OCaml. OCaml webmachine is a layer on top of cohttp that implements a state-machine-based HTTP request processor. Itβs particularly well-suited for writing RESTful APIs. As the name suggests, this is an OCaml port of the webmachine project.
-
Tools:
- COW β 79 β Caml on the Web (COW) is a set of parsers and syntax extensions to let you manipulate HTML, CSS, XML, JSON and Markdown directly from OCaml code.
- Ocamlnet has many relevant web libraries β Nethtml html parser, Netasn1 for ASN.1 parsing, Netencoding for Base64, Quoted Printable, URL encoding and HTML escaping, Netmime for MIME processing, etc. See the list of modules in Ocamlnetβs manual.
- tyxml β Library to build valid (according to the W3C spec) Html and Svg trees.
-
js_of_ocaml β Js_of_ocaml is a compiler of OCaml bytecode to Javascript. It makes it possible to run Ocaml programs in a Web browser.
- commonjs_of_ocaml β 10 β³2Y - Easily import and export CommonJS modules from a js_of_ocaml project.
- BuckleScript - BuckleScript is backend for OCaml to generate debuggable Javascript. It enables OCaml to integrate Javascript platform in a seamless way.
- ocaml-uri β 50 β RFC3986 URI parsing library.
- Goji β 33 β³3Y β An OCaml bindings generator for JavaScript libraries.
- Syndic β 21 β RSS and Atom feed parsing
- ocaml-mustache β 35 β mustache.js logic-less templates in OCaml.
- atdjs β 10 β³4Y β atd code generator for OCaml/js_of_ocaml.
- jingoo β 58 β OCaml template engine almost compatible with jinja2.
- dispatch β 25 β Path-based dispatching for client- and server-side applications.
- Lambda Soup β 175 - Functional HTML scraping and manipulation with CSS selectors, Γ la Pythonβs Beautiful Soup.
- Markup.ml β 83 - Error-recovering streaming HTML5 and XML parsers, serializers.
- gen_js_api β 68 - gen_js_api aims at simplifying the creation of OCaml bindings for Javascript libraries.
-
Open Source Projects:
- Cumulus β 38 β³3Y β Hacker news like website with the OCaml framework Ocsigen
Inspired by awesome projects line. Discover more awesomeness β 21639 .
This list is a copy of rizo/awesome-ocaml with ranks