{"id":48946731,"url":"https://github.com/andrestubbe/fastcore","last_synced_at":"2026-04-17T17:06:53.843Z","repository":{"id":351298614,"uuid":"1210403322","full_name":"andrestubbe/FastCore","owner":"andrestubbe","description":"Unified JNI loader for the FastJava ecosystem. Cross-platform native library loading for Java 25+ with automatic Windows/Linux/macOS support.","archived":false,"fork":false,"pushed_at":"2026-04-14T12:31:16.000Z","size":24,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":0,"default_branch":"master","last_synced_at":"2026-04-14T13:30:24.926Z","etag":null,"topics":["cross-platform","dll-loader","fastjava","java","jni","jvm","linux","macos","native-library-loader","windows"],"latest_commit_sha":null,"homepage":"","language":"Java","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/andrestubbe.png","metadata":{"files":{"readme":"README.md","changelog":"CHANGELOG.md","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,"zenodo":null,"notice":null,"maintainers":null,"copyright":null,"agents":null,"dco":null,"cla":null}},"created_at":"2026-04-14T11:36:32.000Z","updated_at":"2026-04-14T12:31:20.000Z","dependencies_parsed_at":null,"dependency_job_id":null,"html_url":"https://github.com/andrestubbe/FastCore","commit_stats":null,"previous_names":["andrestubbe/fastcore"],"tags_count":1,"template":false,"template_full_name":null,"purl":"pkg:github/andrestubbe/FastCore","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/andrestubbe%2FFastCore","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/andrestubbe%2FFastCore/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/andrestubbe%2FFastCore/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/andrestubbe%2FFastCore/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/andrestubbe","download_url":"https://codeload.github.com/andrestubbe/FastCore/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/andrestubbe%2FFastCore/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":31937751,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-04-17T12:37:54.787Z","status":"ssl_error","status_checked_at":"2026-04-17T12:37:25.095Z","response_time":62,"last_error":"SSL_read: unexpected eof while reading","robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":false,"can_crawl_api":true,"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":["cross-platform","dll-loader","fastjava","java","jni","jvm","linux","macos","native-library-loader","windows"],"created_at":"2026-04-17T17:06:52.058Z","updated_at":"2026-04-17T17:06:53.837Z","avatar_url":"https://github.com/andrestubbe.png","language":"Java","readme":"# FastCore — Unified JNI Loader\n\n\u003e **Cross-platform native library loading** for Java 17+ — Windows, Linux, macOS\n\n[![Java](https://img.shields.io/badge/Java-17+-blue.svg)](https://www.java.com)\n[![Maven](https://img.shields.io/badge/Maven-3.9+-orange.svg)](https://maven.apache.org)\n[![License: MIT](https://img.shields.io/badge/License-MIT-yellow.svg)](https://opensource.org/licenses/MIT)\n\n---\n\n## Quick Start\n\n```java\nimport fastcore.FastCore;\n\n// Load a native library\nFastCore.loadLibrary(\"fastrobot\");\n\n// Check platform\nif (FastCore.isWindows()) {\n    System.out.println(\"Running on Windows\");\n}\n\n// Get platform info\nSystem.out.println(FastCore.getPlatformInfo());\n```\n\n---\n\n## Features\n\n- **Cross-platform** — Windows (.dll), Linux (.so), macOS (.dylib)\n- **Automatic extraction** — Native libraries from JAR to temp\n- **Smart loading** — System path first, fallback to extracted\n- **Zero dependencies** — Pure Java\n\n---\n\n## Installation\n\n### Direct Download (No Maven Required)\n\nDownload the latest JAR directly:\n- [fastcore-1.0.0.jar](https://github.com/andrestubbe/FastCore/releases/download/v1.0.0/fastcore-1.0.0.jar)\n\nBrowse all releases: [Releases page](https://github.com/andrestubbe/FastCore/releases)\n\n### JitPack (for Maven/Gradle projects)\n\n**Maven:**\n```xml\n\u003crepositories\u003e\n    \u003crepository\u003e\n        \u003cid\u003ejitpack.io\u003c/id\u003e\n        \u003curl\u003ehttps://jitpack.io\u003c/url\u003e\n    \u003c/repository\u003e\n\u003c/repositories\u003e\n\n\u003cdependency\u003e\n    \u003cgroupId\u003ecom.github.andrestubbe\u003c/groupId\u003e\n    \u003cartifactId\u003efastcore\u003c/artifactId\u003e\n    \u003cversion\u003ev1.0.0\u003c/version\u003e\n\u003c/dependency\u003e\n```\n\n**Gradle:**\n```groovy\nrepositories {\n    maven { url 'https://jitpack.io' }\n}\n\ndependencies {\n    implementation 'com.github.andrestubbe:fastcore:v1.0.0'\n}\n```\n\n## Building\n\nSee [COMPILE.md](COMPILE.md) for build instructions.\n\n---\n\n**Part of the FastJava Ecosystem** — *Making the JVM faster.*\n","funding_links":[],"categories":[],"sub_categories":[],"project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fandrestubbe%2Ffastcore","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fandrestubbe%2Ffastcore","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fandrestubbe%2Ffastcore/lists"}