node-url-parse 1.2.0-1 source package in Ubuntu

Changelog

node-url-parse (1.2.0-1) unstable; urgency=medium

  * Team upload
  * New upstream release
  * Bump standards, update section and priority
  * Use github tarballs
  * Use webpack instead of browserify

 -- Pirate Praveen <email address hidden>  Tue, 02 Jan 2018 21:25:10 +0530

Upload details

Uploaded by:
Debian Javascript Maintainers
Uploaded to:
Sid
Original maintainer:
Debian Javascript Maintainers
Architectures:
all
Section:
javascript
Urgency:
Medium Urgency

See full publishing history Publishing

Series Pocket Published Component Section
Bionic release universe misc

Builds

Bionic: [FULLYBUILT] amd64

Downloads

File Size SHA-256 Checksum
node-url-parse_1.2.0-1.dsc 2.1 KiB 8d46907a8f268a888145a2d0dc0456313c574ab74f04ac9434d9edfcd50cc3de
node-url-parse_1.2.0.orig.tar.gz 13.0 KiB 64bd52bb140708863daf43751aae91e5b56b67efd08ad156be6b6c3f0ecf4ff2
node-url-parse_1.2.0-1.debian.tar.xz 2.8 KiB c5302ffffaadc7872ffefe16dfd4a7e7e2a4c529df3771d1138845f5d44b64a1

Available diffs

No changes file available.

Binary packages built by this source

node-url-parse: 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 <a> 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.