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

urlregexp

v1.0.2

Published

Regular expression to match URLs in a body of plain text.

Downloads

2,888

Readme

URLRegExp

This module provides a regular expression to match web URLs in a body of plain text.

Introduction

URLRegExp is inspired by John Gruber's work on a liberal URL matching RegExp, but with a stronger focus on comprehensiveness and correctness than conciseness. It also doesn't try to match non-web URLs, like mailto: and magnet:.

It will match bare domain names with or without paths (example.com, example.com/path) and full URLs starting with either http://, https:// or //.

The RegExp is compiled from a template file and an automatically generated list of all the current top level domains. It will be updated as new TLDs are added by ICANN. XRegExp is used to provide full support for matching Unicode internationalized domain names.

Features

  • Matching of both full and bare URLs (with or without http://).
  • Bare URL matching based on a list of all current TLDs. Will match foo.museum but not foo.jpeg.
  • Matching of Internationalized Domain Names, like:
    • ουτοπία.δπθ.gr
    • 日本.icom.museum
    • правительство.рф
    • 互联网中心.中国
  • Matching of paths, query strings and fragment identifiers in bare URLs.
  • Smart detection of quotes, parenthesis and punctuation. Will not match closing brackets at the end of an URL, unless an opening bracket is present earlier on the URL:
    • (en.wikipedia.org/wiki/Paris) - Will not match the final parenthesis.
    • en.wikipedia.org/wiki/Paris_(disambiguation) - Will match the final parenthesis.

Usage

// urlregexp is a normal JavaScript RegExp object, with the 'g' flag.
var urlregexp = require('urlregexp')

var matches = 'This is a sample text with a domain: google.com. Have a nice day.'.match(urlregexp);

License

The MIT License (MIT)

Copyright (c) 2014 Automattic, Inc.

Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in
all copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
THE SOFTWARE.