npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2024 – Pkg Stats / Ryan Hefner

react-native-ikev2-ipsec

v1.1.15

Published

React Native IPSec IKEV2 Vpn Module

Downloads

36

Readme

react-native-ikev2-ipsec

Getting started

Plugin can be installed using npm With yarn: $ yarn add react-native-ikev2-ipsec --save Or with npm: $ npm install react-native-ikev2-ipsec --save

Mostly automatic installation

on react native >60 no need to do anything but for manualing installation run the code below

$ react-native link react-native-ikev2-ipsec

Example

To run example:

  • make sure the module folder has no node_modules
  • install the dependencies on the example folder using yarn or npm i
  • run the project:
npx react-native run-android

Usage

import { prepare, connect } from "react-native-ikev2-ipsec";
...
useEffect(() => {
	prepare();
}); /// or use componentDidmount in case of a class component
...
connect(address, username, password, vpnType, secret, disconnectOnSleep)

see example folder.

Methods

| Name | arguments | returns | Description | | ---------------------------------- | -------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | ------------------------- | ----------------------------------------------------------------------------------------------------------- | | prepare | None | Promise | Android: This will ask permission and do necessary setupsIOS: This will listen for status change on vpn | | connect | address: string (address of VPN)username: string (username of VPN's credentials)password: string (username of VPN's credentials)vpnType: string | undefined (Android only, not implemented yet)mtu: number | undefiend (Android only, VPN's maximum transmission unit) | Promise | Connect to vpn with provided credentials | | getCurrentState | None | Promise | Get current VPN state | | getCharonErrorState (Android only) | None | Promise | Get current VPN Error state (Android only) | | disconnect | None | Promise | Disconnect the VPN | | onStateChangedListener | callback: (state: { state: VpnState; charonState: CharonErrorState }) => void | EmitterSubscription | Will call the callback on state change | | removeOnStateChangeListener | stateChangedEvent: EmitterSubscription | void | Remove the state change listener |

Enums

| Name | Values | Description | | ---------------- | ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------ | ----------------- | | VpnState | disconnected = 0 (VPN is disconnected)connecting = 1 (VPN is connecting)connected = 2 (VPN is connected)disconnecting = 3 (VPN is disconnecting)genericError = 4 (VPN encountered an error charon state on android to find out the error) | VPN current state | | CharonErrorState | NO_ERROR = 0 (VPN has no error)AUTH_FAILED = 1 (Wrong credentials)PEER_AUTH_FAILED = 2LOOKUP_FAILED = 3 (Wrong VPN URL)UNREACHABLE = 4 (VPN URL is unreachable)GENERIC_ERROR = 5PASSWORD_MISSING = 6 (No password has been provided)CERTIFICATE_UNAVAILABLE = 7 (Certification has not been provided)UNDEFINED = 8 (Unknown error) | VPN Error |