Socket
Socket
Sign inDemoInstall

expo-linking

Package Overview
Dependencies
Maintainers
20
Versions
79
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

expo-linking

Create and open deep links universally


Version published
Weekly downloads
299K
decreased by-13.97%
Maintainers
20
Weekly downloads
 
Created

What is expo-linking?

The expo-linking package is a part of the Expo ecosystem and provides utilities for handling deep links and URLs in React Native applications. It allows you to open URLs, handle incoming links, and parse URLs to extract information.

What are expo-linking's main functionalities?

Open URLs

This feature allows you to open a URL in the device's default web browser. The code sample demonstrates how to use the openURL method to open a web page.

import * as Linking from 'expo-linking';

Linking.openURL('https://example.com');

Handle Incoming Links

This feature allows you to handle incoming links by adding an event listener for URL events. The code sample shows how to log the incoming URL when the event is triggered.

import * as Linking from 'expo-linking';

Linking.addEventListener('url', (event) => {
  console.log('Incoming URL:', event.url);
});

Parse URLs

This feature allows you to parse URLs to extract information such as the path and query parameters. The code sample demonstrates how to parse a URL and log the parsed object.

import * as Linking from 'expo-linking';

const url = 'https://example.com/path?name=value';
const parsed = Linking.parse(url);
console.log(parsed);

Other packages similar to expo-linking

Keywords

FAQs

Package last updated on 21 Dec 2022

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc