
Security News
Open Source CAI Framework Handles Pen Testing Tasks up to 3,600× Faster Than Humans
CAI is a new open source AI framework that automates penetration testing tasks like scanning and exploitation up to 3,600× faster than humans.
universal-parse-url
Advanced tools
A universal URL parser for Node.js and browser environments with a minimal footprint.
A universal URL parser for Node.js and browser environments with a minimal footprint (gzipped only 600 bytes for the browser version).
Install with npm
:
npm install --save universal-parse-url
Note: The installed node module also includes a d.ts
file, and thus works out of the box with TypeScript.
import { parseURL } from 'universal-parse-url';
const url = parseURL('http://www.example.com:1234/foo?bar=1#baz');
The resulting url
object looks like this:
{
hash: '#baz',
host: 'www.example.com:1234',
hostname: 'www.example.com',
href: 'http://www.example.com:1234/foo?bar=1#baz',
pathname: '/foo',
port: '1234',
protocol: 'http:',
search: '?bar=1'
}
parseURL
just delegates to URL.parse.document.createElement('a')
).parseURL
is called, the href
attribute of this element is set to the given url string.If you plan on targeting browser environments as well, you need to use a bundler like Webpack, Browserify or Rollup (with rollup-plugin-node-resolve) that makes use of the browser
field in the package.json
.
To keep universal-parse-url
as small and simple as possible, only the URL details that are available in Node’s URL
object as well as HTMLAnchorElement
are supported (see the above example).
FAQs
A universal URL parser for Node.js and browser environments with a minimal footprint.
The npm package universal-parse-url receives a total of 172 weekly downloads. As such, universal-parse-url popularity was classified as not popular.
We found that universal-parse-url demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 1 open source maintainer collaborating on the project.
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.
Security News
CAI is a new open source AI framework that automates penetration testing tasks like scanning and exploitation up to 3,600× faster than humans.
Security News
Deno 2.4 brings back bundling, improves dependency updates and telemetry, and makes the runtime more practical for real-world JavaScript projects.
Security News
CVEForecast.org uses machine learning to project a record-breaking surge in vulnerability disclosures in 2025.