{"id":15346277,"url":"https://github.com/bfergerson/journey","last_synced_at":"2025-04-14T03:24:41.709Z","repository":{"id":55842517,"uuid":"186743940","full_name":"BFergerson/Journey","owner":"BFergerson","description":"JCEF-powered cross-platform web browser","archived":false,"fork":false,"pushed_at":"2023-01-11T14:40:18.000Z","size":281,"stargazers_count":100,"open_issues_count":26,"forks_count":26,"subscribers_count":6,"default_branch":"master","last_synced_at":"2025-03-27T17:22:22.948Z","etag":null,"topics":["cef","chromium","chromium-embedded-framework","jcef","jxbrowser","webview"],"latest_commit_sha":null,"homepage":"","language":"Java","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"apache-2.0","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/BFergerson.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}},"created_at":"2019-05-15T03:40:19.000Z","updated_at":"2025-01-03T13:10:39.000Z","dependencies_parsed_at":"2023-02-09T03:30:52.549Z","dependency_job_id":null,"html_url":"https://github.com/BFergerson/Journey","commit_stats":null,"previous_names":[],"tags_count":25,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/BFergerson%2FJourney","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/BFergerson%2FJourney/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/BFergerson%2FJourney/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/BFergerson%2FJourney/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/BFergerson","download_url":"https://codeload.github.com/BFergerson/Journey/tar.gz/refs/heads/master","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":248814468,"owners_count":21165771,"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":["cef","chromium","chromium-embedded-framework","jcef","jxbrowser","webview"],"created_at":"2024-10-01T11:20:38.733Z","updated_at":"2025-04-14T03:24:41.677Z","avatar_url":"https://github.com/BFergerson.png","language":"Java","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Journey\n\n[![Build Status](https://travis-ci.com/CodeBrig/Journey.svg?branch=master)](https://travis-ci.com/CodeBrig/Journey)\n[![Build status](https://ci.appveyor.com/api/projects/status/w6yr31klo9uwo1mb/branch/master?svg=true)](https://ci.appveyor.com/project/BFergerson/journey/branch/master)\n\nJourney is a JCEF-powered cross-platform web browser created to address a need for an open-source JxBrowser alternative.\nNo attempt has been made to go feature-to-feature with JxBrowser. Journey namely aims to provide the same level of cross-platform capability. This is accomplished by providing a reliable means of building and distributing the CEF native files with Travis-CI/AppVeyor, JitPack, and GitHub.\n\nIssues/PRs are welcome for increasing the capability of Journey to be on par with that of JxBrowser.\n\n### Features\n - Linux (64bit) support\n - macOS (64bit) support\n - Windows (32bit/64bit) support\n - Release distributions (CDN via GitHub)\n - Online/offline CEF native file access\n\n## Installation\n\n### Gradle\n\n```groovy\nrepositories {\n     jcenter()\n     maven { url \"https://jitpack.io\" }\n}\n\ndependencies {\n      compile 'com.github.codebrig:journey:0.4.0-online'\n\n      //or use the offline version (includes native CEF files for all platforms; ~300MB)\n      //compile 'com.github.codebrig:journey:0.4.0-offline'\n}\n```\n\n### Maven\n\n```xml\n\u003crepositories\u003e\n\t\u003crepository\u003e\n\t\t\u003cid\u003ejitpack.io\u003c/id\u003e\n\t\t\u003curl\u003ehttps://jitpack.io\u003c/url\u003e\n\t\u003c/repository\u003e\n\u003c/repositories\u003e\n\n\u003cdependency\u003e\n\t\u003cgroupId\u003ecom.github.codebrig\u003c/groupId\u003e\n\t\u003cartifactId\u003ejourney\u003c/artifactId\u003e\n\t\u003cversion\u003e0.4.0-online\u003c/version\u003e\n\n\t\u003c!-- or use the offline version (includes native CEF files for all platforms; ~300MB) --\u003e\n\t\u003c!-- \u003cversion\u003e0.4.0-offline\u003c/version\u003e --\u003e\n\u003c/dependency\u003e\n```\n\n## Usage\n\n```java\nimport com.codebrig.journey.JourneyBrowserView;\n\nimport javax.swing.*;\nimport java.awt.*;\nimport java.awt.event.WindowAdapter;\nimport java.awt.event.WindowEvent;\n\npublic class JourneyBrowser {\n\n    public static void main(String[] args) {\n        JourneyBrowserView browser = new JourneyBrowserView(\"https://google.com\");\n        JFrame frame = new JFrame();\n        frame.getContentPane().add(browser, BorderLayout.CENTER);\n\n        frame.setDefaultCloseOperation(WindowConstants.DO_NOTHING_ON_CLOSE);\n        frame.addWindowListener(new WindowAdapter() {\n            @Override\n            public void windowClosing(WindowEvent e) {\n                browser.getCefApp().dispose();\n                frame.dispose();\n            }\n        });\n\n        frame.setTitle(\"Journey\");\n        frame.setSize(1000, 600);\n        frame.setVisible(true);\n    }\n}\n```\n\n![](journey-linux.png)\n\n## JCEF Test Browser\n\n### Linux (64bit)\n```sh\ncurl -L -O https://github.com/CodeBrig/Journey/releases/download/0.4.0-78-assets/jcef-distrib-linux64.zip\nunzip jcef-distrib-linux64.zip\n\nexport LD_LIBRARY_PATH=/usr/lib/jvm/java-8-openjdk-amd64/jre/lib/amd64:$(pwd)/linux64/bin/lib/linux64\njava -cp \"linux64/bin/*\" tests.detailed.MainFrame\n```\n\n### macOS (64bit)\n```sh\ncurl -L -O https://github.com/CodeBrig/Journey/releases/download/0.4.0-69-assets/jcef-distrib-macintosh64.zip\nunzip jcef-distrib-macintosh64.zip\nmv ./macosx64/bin/jcef_app.app .\n\nJAVA_PATH=\"./jcef_app.app/Contents/Java\"\nFRAMEWORKS_PATH=\"./jcef_app.app/Contents/Frameworks\"\nRESOURCES_DIR_PATH=\"$(pwd)/jcef_app.app/Contents/Frameworks/Chromium Embedded Framework.framework/Resources\"\njava -cp \"$JAVA_PATH:$JAVA_PATH/*\" -Djava.library.path=$JAVA_PATH tests.detailed.MainFrame --framework-dir-path=$FRAMEWORKS_PATH/Chromium\\ Embedded\\ Framework.framework --browser-subprocess-path=$FRAMEWORKS_PATH/jcef\\ Helper.app/Contents/MacOS/jcef\\ Helper --resources-dir-path=\"$RESOURCES_DIR_PATH\" --disable-gpu\n```\n\n### Windows (64bit) [PowerShell]\n```\n[Net.ServicePointManager]::SecurityProtocol = [Net.SecurityProtocolType]::Tls12\nwget https://github.com/CodeBrig/Journey/releases/download/0.4.0-78-assets/jcef-distrib-windows64.zip -OutFile jcef-distrib-windows64.zip\nExpand-Archive jcef-distrib-windows64.zip .\n\njava -cp \"./win64/bin;./win64/bin/*\" \"-Djava.library.path=./win64/bin/lib/win64\" tests.detailed.MainFrame\n```\n\n## Version Matrix\n\n| Journey Version     | JCEF Version (Linux) | JCEF Version (macOS) | JCEF Version (Windows) |\n|---------------------|----------------------|----------------------|----------------------|\n| 0.4.0 (2019-11-30) | [78.2.7.237](https://bitbucket.org/chromiumembedded/java-cef/commits/1e3a9146226d3df8a7f0c9c03989d220ac26ca49) (2019-11-14) | [69.0.3497.100](https://bitbucket.org/chromiumembedded/java-cef/commits/235e3a844380b72761643324e1d9b7713cae3b63) (2018-11-01) | [78.2.7.237](https://bitbucket.org/chromiumembedded/java-cef/commits/1e3a9146226d3df8a7f0c9c03989d220ac26ca49) (2019-11-14) |\n| 0.3.3 (2019-07-13) | [75.0.13.220](https://bitbucket.org/chromiumembedded/java-cef/commits/13ae2d6074bc00a31888fb752dd45f9cf254725d) (2019-07-09) | [69.0.3497.100](https://bitbucket.org/chromiumembedded/java-cef/commits/235e3a844380b72761643324e1d9b7713cae3b63) (2018-11-01) | [75.0.13.220](https://bitbucket.org/chromiumembedded/java-cef/commits/13ae2d6074bc00a31888fb752dd45f9cf254725d) (2019-07-09) |\n| 0.2.18 (2019-06-30)\u003cbr\u003e0.2.17 (2019-06-12) | [73.1.11.216](https://bitbucket.org/chromiumembedded/java-cef/commits/6b140efeef4e566b6a68025b1dcea9b2da6e6e57) (2019-05-21) | [69.0.3497.100](https://bitbucket.org/chromiumembedded/java-cef/commits/235e3a844380b72761643324e1d9b7713cae3b63) (2018-11-01) | [73.1.11.216](https://bitbucket.org/chromiumembedded/java-cef/commits/6b140efeef4e566b6a68025b1dcea9b2da6e6e57) (2019-05-21) |\n| 0.2.16 (2019-06-10) | [73.1.11.215](https://bitbucket.org/chromiumembedded/java-cef/commits/d348788e3347fa4d2a421773463f7dd62da60991) (2019-05-10) | [69.0.3497.100](https://bitbucket.org/chromiumembedded/java-cef/commits/235e3a844380b72761643324e1d9b7713cae3b63) (2018-11-01) | [73.1.11.215](https://bitbucket.org/chromiumembedded/java-cef/commits/d348788e3347fa4d2a421773463f7dd62da60991) (2019-05-10) |\n| 0.1.1 (2019-05-21)  | [73.1.11.215](https://bitbucket.org/chromiumembedded/java-cef/commits/d348788e3347fa4d2a421773463f7dd62da60991) (2019-05-10) | n/a | [73.1.11.215](https://bitbucket.org/chromiumembedded/java-cef/commits/d348788e3347fa4d2a421773463f7dd62da60991) (2019-05-10) |\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fbfergerson%2Fjourney","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fbfergerson%2Fjourney","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fbfergerson%2Fjourney/lists"}