Socket
Socket
Sign inDemoInstall

onion-regex

Package Overview
Dependencies
0
Maintainers
1
Versions
10
Alerts
File Explorer

Advanced tools

Install Socket

Detect and block malicious and high-risk dependencies

Install

    onion-regex

Regular expression for matching .onion Tor links (v2 & v3).


Version published
Weekly downloads
471
decreased by-67.96%
Maintainers
1
Install size
5.57 kB
Created
Weekly downloads
 

Readme

Source

onion-regex Build Status XO code style

Regular expression for matching .onion Tor links (v2 & v3).

Install

~ ❯❯❯ npm install onion-regex

Usage

const onionRegex = require('onion-regex');

onionRegex().test('nodejsrocks xmh57jrzrnw6insl.onion');
//=> true

onionRegex({exact: true}).test('nodejsrocks xmh57jrzrnw6insl.onion foo');
//=> false

onionRegex.v2({exact: true}).test('xmh57jrzrnw6insl.onion');
//=> true

onionRegex.v3({exact: true}).test('vww6ybal4bd7szmgncyruucpgfkqahzddi37ktceo3ah7ngmcopnpyyd.onion');
//=> true

'nodejsrocks 3g2upl4pq6kufc4m.onion rainbow facebookcorewwwi.onion'.match(onionRegex());
//=> ['3g2upl4pq6kufc4m.onion', 'facebookcorewwwi.onion']

API

onionRegex([options])

Returns a regex for matching onion links.

onionRegex.v2([options])

Returns a regex for matching version 2 (v2) onion links.

onionRegex.v3([options])

Returns a regex for matching version 3 (v3) onion links.

options.exact

Type: boolean
Default: false (Matches any onion link in a string)

Only match an exact string. Useful with RegExp#test() to check if a string is an onion link.

License

MIT © Nikolaos Kamarinakis

Keywords

FAQs

Last updated on 08 Aug 2020

Did you know?

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

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc