0.0.8 • Published 4 years ago

capacitor-tor-client v0.0.8

Weekly downloads
-
License
MIT
Repository
github
Last release
4 years ago

capacitor-tor-client

A plugin capable of starting (and stopping) an instance of tor on your mobile device. This includes spinning up a SOCK5H proxy server which can proxy http requests through the tor network (including targeting V3 onion urls).

WIP

To install into your ionic project:

$ npm i --save capacitor-tor-client
$ npx cap update

... add module into the typescript how you like ...

$ ionic build
$ npx cap sync
$ npx cap open ios && npx cap open android

You MUST also add the following lines to the build.gradle within your android folder: 1. In the 'dependencies:{ ... }' section include this line: implementation 'org.torproject:tor-android-binary:0.4.2.5' 1. In the 'repositories:{ ... }' section include this line: maven { url "https://raw.githubusercontent.com/guardianproject/gpmaven/master" } as well as edit your android 'android/app/src/main/java/.../MainActivity.java'

...
import tor.client.plugin.TorClientPlugin;

public class MainActivity extends BridgeActivity {
  @Override
  public void onCreate(Bundle savedInstanceState) {
    super.onCreate(savedInstanceState);

    // Initializes the Bridge
    this.init(savedInstanceState, new ArrayList<Class<? extends Plugin>>() {{
      // Additional plugins you've installed go here
       add(TorClientPlugin.class);
    }});
  }
}

Sample use in an ionic app:

import { Component } from '@angular/core';
import { TorClient, HttpVerb, JSON_ } from 'capacitor-tor-client';
@Component({
  selector: 'app-tab1',
  templateUrl: 'tab1.page.html',
  styleUrls: ['tab1.page.scss']
})
export class Tab1Page {
  private readonly torClient = new TorClient();

  constructor() {
  }

  async ngOnInit() {
    console.log('Initializing Tor Daemon.');
    await this.torClient.initTor();
    console.log(`Tor Daemon initialized.`);
  }
}

We use the javascript capacitor plugin import syntax import { TorClient } from 'capacitor-tor-client'; to get typescript type safety in the Ionic code.

0.0.8

4 years ago

0.0.7

4 years ago

0.0.6

4 years ago

0.0.5

4 years ago

0.0.4

4 years ago

0.0.3

4 years ago

0.0.2

4 years ago