Awesome Scala Native 
Scala Native is an optimising ahead-of-time compiler for the Scala programming language. Traditionally, a virtual machine, the JVM, was required to run Scala programs. Scala Native taps into the compiler to emit LLVM intermediate representation rather than JVM bytecode. Then, the LLVM compiler infrastructure is used to produce native libraries and executables. Given that Scala Native executables are stand-alone programs, they generally have a shorter start-up time and low memory consumption. This opens up new avenues to deploy Scala programs where previously the virtual machine would be the limiting factor. For example, developers could write programs for the command line or embedded devices.
Contents
- Awesome Scala Native
- Contents
- Tutorials and Examples
- Build Tools
- Functional Programming
- Unit Tests
- Bindings
- File Formats and Parsers
- Databases
- Web Development
- Concurrency
- Logging
- Console
- Robotics
- Programs
- Infrastructure
- Licence
Tutorials and Examples
- Giter8 template for a minimal Scala Native project - Official Giter8 template for a minimal Scala Native project.
- Hands on Scala Native - Tutorial for implementing a bandwidth monitor with Ncurses.
- Starter for Scala Native - Scala Native project that links to a custom C library.
- Building C code using sbt-jni - Example for compiling C code in a Scala Native project using sbt-jni.
- Example project with external dependencies - Example project that uses external dependencies to generate HTML and run a test suite.
- Starter for Gtk+ Projects - Giter8 template for Scala Native GUI projects using Gtk+.
- Modern systems programming with scala native book.
- Write a simple CLI application in Scala Native
Build Tools
- sbt - Scala's standard build tool.
- Mill - Build tool striving for simplicity, inspired by Bazel.
- Bloop - Scala build server and command-line tool for fast developer workflows.
- Seed - Build tool based on Bloop. Focuses on user experience and cross-platform builds, inspired by Cargo.
Functional Programming
- Shapeless - Library for generic programming.
- Squants - DSL for quantities, units of measure and dimensional analysis.
- scalaz - Type classes and instances for data structures.
- nobox - Immutable primitive array wrapper without boxing.
- PPrint - Pretty-print values and types.
- SourceCode - Implicits providing meta data similar to
__LINE__in C. - reactify - Functional Reactive Programming framework for Scala.
- chimney - Boilerplate-free data transformations.
- Quicklens - Modify deeply nested case class fields.
- Cats - Abstractions for functional programming in Scala.
Unit Tests
- µTest - Library for unit tests.
- minitest - Lightweight testing library.
- scalaprops - Library for property-based testing.
- scalaprops-shapeless - Generation of arbitrary ADT instances.
- scalaprops-cross-example - Cross-platform example.
