Socket
Socket
Sign inDemoInstall

rfc-3986

Package Overview
Dependencies
0
Maintainers
1
Versions
2
Alerts
File Explorer

Advanced tools

Install Socket

Detect and block malicious and high-risk dependencies

Install

    rfc-3986

Javascript implementation of RFC-3986 and its components


Version published
Weekly downloads
528
increased by22.51%
Maintainers
1
Install size
11.6 kB
Created
Weekly downloads
 

Readme

Source

rfc-3986

Javascript implementation of the ABNF from RFC-3986 to allow validation of parts of the specification.

npm Downloads Node.js Version Build Status Coverage Status bitHound Dependencies bitHound Dev Dependencies bitHound Code

Install

$ npm install rfc-3986

API

var rfc3986 = require('rfc-3986')

RFC-3986

This is an object which has various properties containing regular expressions matching parts of the specification.

rfc3968.cidr

Matches the CIDR part of an IP address, matches numbers 0-32.

rfc3986.IPv4address

Matches an IPv4 address.

rfc3986.IPv6address

Matches an IPv6 address.

rfc3986.IPvFuture

Matches an IPvFuture address.

rfc3986.IPLiteral

Matches an IPLiteral which is either an IPv4, IPv6, or IPvFuture.

rfc3986.scheme

Matches the scheme part of the URI.

rfc3986.hierPart

Matches the hierarchial part of the URI which identifies the authority (domain/ip address) and the path.

rfc3986.query

Matches the query part of a URI which contains the query parameters and the ? delimiter.

rfc3986.fragment

Matches the fragment part of a URI which contains the hash value.

rfc3986.uri

Matches a URI which conforms to RFC-3986.

Keywords

FAQs

Last updated on 31 Mar 2016

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