npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2024 – Pkg Stats / Ryan Hefner

dat-deep-link

v0.2.0

Published

An experiment to define an URI scheme that implements 'hypercore-strong-link'

Downloads

12

Readme

dat-deep-link

An experiment to define an URI scheme that uses hypercore-strong-link for creating links that pin files to a version.

Installation

$ npm install dat-deep-link

URI Format

The URI format extends a traditional DAT link by including the root hash of the merkle tree of the metadata hypercore feed at the current version of the archive. The version is included along with the pathspec that points to the file in the archive.

dat://[tree-hash@]dat-key[:dat-version][/pathspec]

where

  • tree-hash is the root hash of the merkle tree for the metadata feed. Optional
  • dat-key is the public key for the DAT archive. Required at dat-version Optional
  • dat-version is the version of the DAT archive that should be checked out and verified against Optional
  • pathspec is the file or directory that should be verified. Optional

Usage

link.generate(drive, '/path/to/file', (err, uri) => {
  link.resolve(drive, uri, (err, checkout, filename) => {
    // do something with drive checkout and filename in uri
  })
})

API

link.generate(drive, filename, callback)

Generate a URI for filename in drive at drive.version (normalized for hyperdrive@10) calling callback(err, uri) where uri is the generated DAT deep link.

link.generate(drive, 'hello.txt', (err, uri) => {
  console.log(uri) // 'dat://...'
})

link.resolve(drive, uri, callback)

Resolve and verify uri against drive calling callback(err, checkout, filename, verified) where checkout is a hyperdrive instance checked out at the version specified in uri, filename is the pathspec specified in the uri, and verified is a boolean indicating if the uri was verified.

const uri = 'dat://e8c2360201afe4acdcee01841179992864564b40bcb23aeb78dd7ba258780d14@0f3a764c72f5a08ea42006b881d923fd5baba9b516bda22e79ca43735c7f6c3f:1/hello.txt'
link.resolve(drive, uri, (err, checkout, filename, verified) => {
  if (verified) {
    checkout.readFile(filename, console.log)
  }
})

License

MIT