Socket
Socket
Sign inDemoInstall

packageurl-js

Package Overview
Dependencies
Maintainers
0
Versions
16
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

packageurl-js - npm Package Versions

1

0.0.6

Diff

Changelog

Source

0.0.6

Bug Fixes

  • Properly replace all underscore values for PyPI packages #23
majurg
published 0.0.5 •

Changelog

Source

0.0.5

Changes

  • update deps via npm audit fix

Bug Fixes

  • Handle forward slash in namespace for go purls
majurg
published 0.0.4 •

Changelog

Source

0.0.4

Bug Fixes

  • Properly handle PyPI purl values per the purl-spec #18
majurg
published 0.0.3 •

Changelog

Source

0.0.3

Bug Fixes

  • Properly handle undefined or null qualifier values #16
majurg
published 0.0.2 •

Changelog

Source

0.0.2

Features

  • TypeScript: type-definitions #6

Bug fixes

  • fromString(): version is used outside of block scope #5
  • fromString(): qualifiers extracted as string, constructor expects object #7

BREAKING CHANGES

  • the main module previously exported the PackageURL class directly
  • this prevents that additional classes can be added in the future and doesn't work nicely together with the ES6 module system
  • the root module now exports an object containing the classes

Before

const PackageURL = require('packageurl-js');

After

const PackageURL = require('packageurl-js').PackageURL;
// or
const { PackageURL } = require('packageurl-js');
// or ES6 / Typescript
import { PackageURL } from 'packageurl-js';
majurg
published 0.0.1 •

Changelog

Source

0.0.1

  • Initial release
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