Socket
Socket
Sign inDemoInstall

parseurl

Package Overview
Dependencies
Maintainers
1
Versions
11
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

parseurl

parse a url with memoization


Version published
Weekly downloads
31M
increased by7.94%
Maintainers
1
Weekly downloads
 
Created

What is parseurl?

The parseurl npm package is used to parse URLs. It provides utilities for URL resolution and parsing to work with the components of URLs. It can be particularly useful in HTTP server handling to extract parts of the request URL.

What are parseurl's main functionalities?

Parse the URL of an HTTP request

This feature allows you to parse the URL of an incoming HTTP request and obtain components such as pathname, query, etc. The code sample creates an HTTP server that responds with the pathname of the request URL.

const parseurl = require('parseurl');
const http = require('http');

http.createServer(function (req, res) {
  const parsedUrl = parseurl(req);
  res.end('Pathname: ' + parsedUrl.pathname);
}).listen(3000);

Parse the same URL only once

This feature ensures that the URL is only parsed once and the result is cached. Subsequent calls to parseurl with the same request object will return the cached parsed URL object, improving performance.

const parseurl = require('parseurl');
const http = require('http');

http.createServer(function (req, res) {
  const parsedUrl = parseurl(req);
  // parseurl caches the parsed object in req._parsedUrl
  // Subsequent calls will return the cached version
  const sameParsedUrl = parseurl(req);
  res.end('Pathname: ' + sameParsedUrl.pathname);
}).listen(3000);

Other packages similar to parseurl

FAQs

Package last updated on 16 Apr 2019

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