How to Install and Uninstall node-url-parse Package on Ubuntu 16.04 LTS (Xenial Xerus)

Last updated: October 06,2024

1. Install "node-url-parse" package

Please follow the steps below to install node-url-parse on Ubuntu 16.04 LTS (Xenial Xerus)

$ sudo apt update $ sudo apt install node-url-parse

2. Uninstall "node-url-parse" package

Learn how to uninstall node-url-parse on Ubuntu 16.04 LTS (Xenial Xerus):

$ sudo apt remove node-url-parse $ sudo apt autoclean && sudo apt autoremove

3. Information about the node-url-parse package on Ubuntu 16.04 LTS (Xenial Xerus)

Package: node-url-parse
Priority: extra
Section: universe/web
Installed-Size: 42
Maintainer: Ubuntu Developers
Original-Maintainer: Debian Javascript Maintainers
Architecture: all
Version: 1.0.5-2
Depends: nodejs, node-requires-port (>= 0.0.1), node-querystringify (>= 0.0.3)
Filename: pool/universe/n/node-url-parse/node-url-parse_1.0.5-2_all.deb
Size: 11122
MD5sum: 31f3e9a0aaf354c46c1358ffa7952b8d
SHA1: bd3ba11fddd3ea2cb9a631c9b52571a085bc74c2
SHA256: 5107345ed10450cbd2d4c7f57f283219cee08c0437d90476d49d70998de98612
Description-en: Parse URL in node using the URL module and in the browser using the DOM
The url-parse method exposes two different API interfaces. The url interface
that you know from Node.js and the new URL interface that is available in
the latest browsers.
.
Since 0.1 we've moved away from using the DOM's element for URL parsing
and moving to a full Regular Expression solution. The main reason for this
change is to make the URL parser available in different JavaScript
environments as you don't always have access to the DOM like Worker
environments. This module still have a really small foot print as this
module's main intention is to be bundled with client-side code. The only
problem however with a RegExp based solution is that it required a lot of
lookups causing major problems in FireFox. So the last and the current
solution was a pure string parsing solution which chops up the URL in
smaller pieces.
.
Node.js is an event-based server-side JavaScript engine.
Description-md5: 0e27d3fc10c5e075495ca0ecf3279b9f
Homepage: https://github.com/unshiftio/url-parse#readme
Bugs: https://bugs.launchpad.net/ubuntu/+filebug
Origin: Ubuntu