react-native-vpn2sock
v0.5.0
Published
vpn2socks package for react-native
Downloads
6
Readme
react-native-vpn2sock
vpn2socks package for react-native. Not support IOS currently.
Installation
npm install react-native-vpn2sock
Usage
import Vpn2sock from "react-native-vpn2sock";
type SocketConfig = {
name?: string;
type: number;
host: string;
port: number;
username?: string;
password?: string;
method?: string;
udpRelay?: boolean; // 是否支持 udp relay
dnsServer?: string; // DNS server
applicationMode?: number; // VPN 模式,分为全局,白名单,黑名单
applications?: Array<string>; // 应用 packageName 列表,白名单或者黑名单
};
// ...
Vpn2sock.isRunning(TUNNEL_ID).then((r) => {
console.log('isRunning ', r);
});
// 关闭VPN
Vpn2sock.stopTunnel(TUNNEL_ID).then((r) => {
console.log('stopTunnel ', r);
});
// host 能否访问
Vpn2sock.isReachable(SOCKET_SERVER.host, SOCKET_SERVER.port).then(
(r) => {
console.log('isReachable ', r);
}
);
// 开启VPN
Vpn2sock.startTunnel(TUNNEL_ID, SOCKET_SERVER).then((r) => {
console.log('startTunnel ', r);
});
Contributing
See the contributing guide to learn how to contribute to the repository and the development workflow.
License
MIT