All Projects → CodeBrig → Journey

CodeBrig / Journey

Licence: apache-2.0
JCEF-powered cross-platform web browser

Programming Languages

java
68154 projects - #9 most used programming language

Projects that are alternatives of or similar to Journey

Journey
JCEF-powered cross-platform web browser
Stars: ✭ 85 (+25%)
Mutual labels:  webview, chromium, cef
Pandomium
Pandomium is the JCEF (Java Chromium Embedded Framework) implementation dedicated for the Maven based projects
Stars: ✭ 146 (+114.71%)
Mutual labels:  cef, webview, chromium
BlazorCefApp
Build windows desktop GUI app via CEF / WinForms / Blazor server-site
Stars: ✭ 28 (-58.82%)
Mutual labels:  chromium, cef
CefGlue
.NET binding for The Chromium Embedded Framework (CEF)
Stars: ✭ 44 (-35.29%)
Mutual labels:  webview, cef
GModCEFCodecFix
Automatic Patching/Updating of GMod CEF
Stars: ✭ 68 (+0%)
Mutual labels:  chromium, cef
Uranium
Fast and versatile implementation of CEF for Unreal Engine
Stars: ✭ 51 (-25%)
Mutual labels:  chromium, cef
cordova-plugin-x5-tbs
Use Tencent Browser Service(TBS) instead of System WebView for Cordova App
Stars: ✭ 65 (-4.41%)
Mutual labels:  webview, chromium
NIM PC Demo
云信Windows(PC) C/C++ Demo源码仓库
Stars: ✭ 200 (+194.12%)
Mutual labels:  chromium, cef
WebView-Advanced
A collection of android webview hack
Stars: ✭ 25 (-63.24%)
Mutual labels:  webview, chromium
FoldingBrowser
FoldingCoin & CureCoin All-In-One Installer
Stars: ✭ 48 (-29.41%)
Mutual labels:  chromium, cef
chromium-swt
Create and render web UIs in Java SWT and Eclipse RCP applications.
Stars: ✭ 121 (+77.94%)
Mutual labels:  chromium, cef
Vanadium
Privacy and security enhanced releases of Chromium for GrapheneOS. Vanadium provides the WebView and standard user-facing browser on GrapheneOS. It depends on hardening in other GrapheneOS repositories and doesn't include patches not relevant to the build targets used on GrapheneOS.
Stars: ✭ 365 (+436.76%)
Mutual labels:  webview, chromium
OldCEF4Delphi
OldCEF4Delphi is an open source project to embed Chromium-based browsers in applications made with Delphi.
Stars: ✭ 55 (-19.12%)
Mutual labels:  chromium, cef
cefHtmlSnapshot
Command-line utility for Windows take snapshots of HTML pages and save them as images or PDF
Stars: ✭ 23 (-66.18%)
Mutual labels:  chromium, cef
cefgo
Go bindings for the Chromium Embedded Framework (CEF)
Stars: ✭ 20 (-70.59%)
Mutual labels:  chromium, cef
flutter-webview-windows
A WebView2-powered Flutter WebView implementation for the Windows platform.
Stars: ✭ 83 (+22.06%)
Mutual labels:  webview, chromium
Cef2go
Go lang bindings for the Chromium Embedded Framework (CEF)
Stars: ✭ 780 (+1047.06%)
Mutual labels:  cef, chromium
Chromely
Build HTML Desktop Apps on .NET/.NET Core/.NET 5 using native GUI, HTML5, JavaScript, CSS
Stars: ✭ 2,728 (+3911.76%)
Mutual labels:  cef, chromium
cef-mixer
High Performance off-screen rendering (OSR) demo using CEF
Stars: ✭ 183 (+169.12%)
Mutual labels:  chromium, cef
jcefbuild
Binary builds of java-cef
Stars: ✭ 160 (+135.29%)
Mutual labels:  chromium, cef

Journey

Build Status Build status

Journey is a JCEF-powered cross-platform web browser created to address a need for an open-source JxBrowser alternative. No 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.

Issues/PRs are welcome for increasing the capability of Journey to be on par with that of JxBrowser.

Features

  • Linux (64bit) support
  • macOS (64bit) support
  • Windows (32bit/64bit) support
  • Release distributions (CDN via GitHub)
  • Online/offline CEF native file access

Installation

Gradle

repositories {
     jcenter()
     maven { url "https://jitpack.io" }
}

dependencies {
      compile 'com.github.codebrig:journey:0.4.0-online'

      //or use the offline version (includes native CEF files for all platforms; ~300MB)
      //compile 'com.github.codebrig:journey:0.4.0-offline'
}

Maven

<repositories>
	<repository>
		<id>jitpack.io</id>
		<url>https://jitpack.io</url>
	</repository>
</repositories>

<dependency>
	<groupId>com.github.codebrig</groupId>
	<artifactId>journey</artifactId>
	<version>0.4.0-online</version>

	<!-- or use the offline version (includes native CEF files for all platforms; ~300MB) -->
	<!-- <version>0.4.0-offline</version> -->
</dependency>

Usage

import com.codebrig.journey.JourneyBrowserView;

import javax.swing.*;
import java.awt.*;
import java.awt.event.WindowAdapter;
import java.awt.event.WindowEvent;

public class JourneyBrowser {

    public static void main(String[] args) {
        JourneyBrowserView browser = new JourneyBrowserView("https://google.com");
        JFrame frame = new JFrame();
        frame.getContentPane().add(browser, BorderLayout.CENTER);

        frame.setDefaultCloseOperation(WindowConstants.DO_NOTHING_ON_CLOSE);
        frame.addWindowListener(new WindowAdapter() {
            @Override
            public void windowClosing(WindowEvent e) {
                browser.getCefApp().dispose();
                frame.dispose();
            }
        });

        frame.setTitle("Journey");
        frame.setSize(1000, 600);
        frame.setVisible(true);
    }
}

JCEF Test Browser

Linux (64bit)

curl -L -O https://github.com/CodeBrig/Journey/releases/download/0.4.0-78-assets/jcef-distrib-linux64.zip
unzip jcef-distrib-linux64.zip

export LD_LIBRARY_PATH=/usr/lib/jvm/java-8-openjdk-amd64/jre/lib/amd64:$(pwd)/linux64/bin/lib/linux64
java -cp "linux64/bin/*" tests.detailed.MainFrame

macOS (64bit)

curl -L -O https://github.com/CodeBrig/Journey/releases/download/0.4.0-69-assets/jcef-distrib-macintosh64.zip
unzip jcef-distrib-macintosh64.zip
mv ./macosx64/bin/jcef_app.app .

JAVA_PATH="./jcef_app.app/Contents/Java"
FRAMEWORKS_PATH="./jcef_app.app/Contents/Frameworks"
RESOURCES_DIR_PATH="$(pwd)/jcef_app.app/Contents/Frameworks/Chromium Embedded Framework.framework/Resources"
java -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

Windows (64bit) [PowerShell]

[Net.ServicePointManager]::SecurityProtocol = [Net.SecurityProtocolType]::Tls12
wget https://github.com/CodeBrig/Journey/releases/download/0.4.0-78-assets/jcef-distrib-windows64.zip -OutFile jcef-distrib-windows64.zip
Expand-Archive jcef-distrib-windows64.zip .

java -cp "./win64/bin;./win64/bin/*" "-Djava.library.path=./win64/bin/lib/win64" tests.detailed.MainFrame

Version Matrix

Journey Version JCEF Version (Linux) JCEF Version (macOS) JCEF Version (Windows)
0.4.0 (2019-11-30) 78.2.7.237 (2019-11-14) 69.0.3497.100 (2018-11-01) 78.2.7.237 (2019-11-14)
0.3.3 (2019-07-13) 75.0.13.220 (2019-07-09) 69.0.3497.100 (2018-11-01) 75.0.13.220 (2019-07-09)
0.2.18 (2019-06-30)
0.2.17 (2019-06-12)
73.1.11.216 (2019-05-21) 69.0.3497.100 (2018-11-01) 73.1.11.216 (2019-05-21)
0.2.16 (2019-06-10) 73.1.11.215 (2019-05-10) 69.0.3497.100 (2018-11-01) 73.1.11.215 (2019-05-10)
0.1.1 (2019-05-21) 73.1.11.215 (2019-05-10) n/a 73.1.11.215 (2019-05-10)
Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].