
@vltpkg/dep-id
A library for serializing dependencies into terse string identifiers,
and turning those serialized identifiers back into Spec objects.
Usage · Note
Usage
import {
getId,
getTuple,
hydrate,
hydrateTuple,
joinDepIDTuple,
splitDepID,
} from '@vltpkg/dep-id'
import { manifest } from '@vltpkg/package-info'
{
const spec = Spec.parse('x@latest')
const mani = await manifest(spec)
const id = getId(spec, mani)
}
{
const spec = Spec.parse('x@vlt:y@latest', {
registries: { vlt: 'http://vlt.sh' },
})
const mani = await manifest(spec)
const id = getId(spec, mani)
}
{
const spec = Spec.parse('x@github:a/b#branch')
const mani = await manifest(spec)
const id = getId(spec, mani)
}
const spec = hydrate('git;github:a/b;branch', 'x')
Note
multiple different spec/manifest combinations can result in the same
identifier. For example, the specifiers x@npm:y@latest and
asdf@npm:y@1.x might both ultimately resolve to the same package, so
they only need to appear in the store once.
BROWSER API
An isomorphic API @vltpkg/dep-id/browser is provided for use in the
browser.