Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

external-link-react

Package Overview
Dependencies
Maintainers
1
Versions
3
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

external-link-react

Inform users when they try to access external links from your website

  • 0.0.3
  • latest
  • Source
  • npm
  • Socket score

Version published
Weekly downloads
2
decreased by-60%
Maintainers
1
Weekly downloads
 
Created
Source

If your website has a comment section, a hacker might post exploitive links there so that users might open the link thinking it is part of your website. You should inform the users that they are about to leave your website and step into an external page. This React hook lets you do it pretty quickly. You just have to plug it in your UI.

Try it online

Usage

import { useExternalLink } from 'external-link-react';

function App() {
  const { handleLinkOpen, handleConfirm } = useExternalLink(handleAskUser);

  function handleAskUser() {
    // we're using browser's native confirm but you can use your own UI.
    const userResponse = window.confirm('This is an external link');
    handleConfirm(userResponse);
  }

  return (
    <div onClick={handleLinkOpen}>
      <a href="https://google.com">Google (external)</a>
      <a href="http://localhost:3000/">Our App (internal)</a>
    </div>
  );
}

Installation

npm i external-link-react

Options

You can pass options to the useExternalLink React hook as a second argument. It has to be an object containing or more of these key-value pairs.

const options = {
  newTab: false,
  debug: false,
};

// inside component
const { handleLinkOpen, handleConfirm } = useExternalLink(handleAskUser, options);
  1. newTab- By default link opens in the same tab. If you want the link to open in a separate tab then you can pass newTab: true. noopener is set on the link so that your website remains secure against phishing attacks.
  2. debug- To enable helpful console messages you can pass debug: true.

Keywords

FAQs

Package last updated on 05 Apr 2020

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