{"id":13933024,"url":"https://github.com/AVSystem/scala-commons","last_synced_at":"2025-07-19T16:32:34.490Z","repository":{"id":4188718,"uuid":"52271346","full_name":"AVSystem/scala-commons","owner":"AVSystem","description":"AVSystem commons library for Scala","archived":false,"fork":false,"pushed_at":"2024-10-29T21:46:02.000Z","size":17460,"stargazers_count":86,"open_issues_count":13,"forks_count":20,"subscribers_count":23,"default_branch":"master","last_synced_at":"2024-10-29T23:48:12.273Z","etag":null,"topics":["hacktoberfest","java-interoperability-utilities","language-utilities","macros","redis","rpc","scala","serialization"],"latest_commit_sha":null,"homepage":"http://www.avsystem.com","language":"Scala","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/AVSystem.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null}},"created_at":"2016-02-22T12:17:48.000Z","updated_at":"2024-10-29T21:46:06.000Z","dependencies_parsed_at":"2024-01-17T07:22:42.009Z","dependency_job_id":"54325d4c-d0f5-4cc0-acdc-19884369c1e8","html_url":"https://github.com/AVSystem/scala-commons","commit_stats":{"total_commits":2446,"total_committers":37,"mean_commits":66.10810810810811,"dds":0.2837285363859362,"last_synced_commit":"3d6c660c3cc5c31c56dd46b736f0d31a938275cf"},"previous_names":[],"tags_count":242,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/AVSystem%2Fscala-commons","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/AVSystem%2Fscala-commons/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/AVSystem%2Fscala-commons/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/AVSystem%2Fscala-commons/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/AVSystem","download_url":"https://codeload.github.com/AVSystem/scala-commons/tar.gz/refs/heads/master","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":226643923,"owners_count":17662968,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["hacktoberfest","java-interoperability-utilities","language-utilities","macros","redis","rpc","scala","serialization"],"created_at":"2024-08-07T21:01:29.402Z","updated_at":"2025-07-19T16:32:34.479Z","avatar_url":"https://github.com/AVSystem.png","language":"Scala","funding_links":[],"categories":["Scala"],"sub_categories":[],"readme":"# AVSystem Commons Library for Scala\n\n[![Continuous Integration](https://github.com/AVSystem/scala-commons/actions/workflows/ci.yml/badge.svg)](https://github.com/AVSystem/scala-commons/actions/workflows/ci.yml)\n[![Maven Central](https://maven-badges.herokuapp.com/maven-central/com.avsystem.commons/commons-core_2.12/badge.svg)](https://maven-badges.herokuapp.com/maven-central/com.avsystem.commons/commons-core_2.13)\n\n**NOTE** This library is available to the public but it's mostly used internally at AVSystem. Therefore, API may frequently change in an incompatible way.\n\n## Modules and features\n\n* `commons-core` - basic language utilities and generic features not associated with any particular library of framework:\n  * [`GenCodec`](docs/GenCodec.md): format-agnostic, typeclass based serialization framework with automatic typeclass\n    derivation for case classes and sealed hierarchies\n    * built-in serialization formats include JSON (raw string), [CBOR](docs/CBOR.md) and BSON (in `commons-mongo`).\n  * **Typesafe** RPC/proxy framework used in particular by [Udash Framework](http://guide.udash.io/#/rpc) for\n    client-server communication\n  * Better enumeration support for Scala -\n    [`ValueEnum`](http://avsystem.github.io/scala-commons/api/com/avsystem/commons/misc/ValueEnum.html),\n    [`SealedEnumCompanion`](http://avsystem.github.io/scala-commons/api/com/avsystem/commons/misc/SealedEnumCompanion.html),\n    [`NamedEnumCompanion`](http://avsystem.github.io/scala-commons/api/com/avsystem/commons/misc/NamedEnumCompanion.html),\n    [`OrderedEnum`](http://avsystem.github.io/scala-commons/api/com/avsystem/commons/misc/OrderedEnum.html)\n  * Java interoperability utilities - [`JavaInterop`](http://avsystem.github.io/scala-commons/api/com/avsystem/commons/jiop/JavaInterop$.html)\n  * Google Guava interoperability utilities (dependency on Guava is optional)\n  * Various Scala language-level utilities\n    * Implicit source information objects - [`SourceInfo`](http://avsystem.github.io/scala-commons/api/com/avsystem/commons/misc/SourceInfo.html)\n    * More concise aliases for Scala collection types - [`CollectionAliases`](http://avsystem.github.io/scala-commons/api/com/avsystem/commons/collection/CollectionAliases$.html)\n    * Universal extension methods - [`SharedExtensions`](http://avsystem.github.io/scala-commons/api/com/avsystem/commons/SharedExtensions$.html)\n  * Lightweight alternatives for Scala `Option` -\n    [`Opt`](http://avsystem.github.io/scala-commons/api/com/avsystem/commons/misc/Opt.html) - guarantees no `null`s,\n    [`OptArg`](http://avsystem.github.io/scala-commons/api/com/avsystem/commons/misc/OptArg.html),\n    [`NOpt`](http://avsystem.github.io/scala-commons/api/com/avsystem/commons/misc/NOpt.html),\n    [`OptRef`](http://avsystem.github.io/scala-commons/api/com/avsystem/commons/misc/OptRef.html) (implemented as value\n    classes)\n  * [Components](docs/Components.md) and Dependency Injection library\n* `commons-redis` (DEPRECATED) - [Scala driver for Redis](docs/RedisDriver.md)\n* `commons-macros` contains implementations of macros used in other modules and reusable macro utilities:\n  * `MacroCommons` trait with several convenience functions for implementing macros\n  * `TypeClassDerivation` - implements infrastructure for automatic type class derivation\n* [`commons-analyzer`](docs/Analyzer.md) - static analyzer for Scala code, i.e. a compiler plugin that enforces various (mostly unrelated) rules and conventions on source code\n* `commons-jetty` - Jetty server utilities\n* [`commons-mongo`](docs/TypedMongo.md) - MongoDB utilities for Scala \u0026 Java MongoDB drivers, integration with `GenCodec`\n* `commons-hocon` - Utilities for working with [HOCON](https://github.com/lightbend/config/blob/master/HOCON.md)\n  * `HoconInput` - an `Input` implementation for `GenCodec` that can read Lightbend Config (`com.typesafe.config.Config`)\n  * An AST (`HTree`) and a lexer/parser for HOCON (`HLexer`, `HParser`)\n* `commons-spring` - Spring framework utilities:\n  * `HoconBeanDefinitionReader` - an utility that allows you to define Spring application context using \n  [HOCON](https://github.com/lightbend/config/blob/master/HOCON.md) format\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2FAVSystem%2Fscala-commons","html_url":"https://awesome.ecosyste.ms/projects/github.com%2FAVSystem%2Fscala-commons","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2FAVSystem%2Fscala-commons/lists"}