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 🙏

© 2026 – Pkg Stats / Ryan Hefner

leonardo-davinci

v1.1.1

Published

The complete notebooks of Leonardo da Vinci in your terminal — search, read, and download 7,549 manuscript pages via the free Da-Vinci API.

Readme

leonardo-davinci

The complete notebooks of Leonardo da Vinci, in your terminal — 7,549 manuscript pages across 28 collections, each with high-resolution scans, the original Italian transcription, and a full English translation.

Powered by the free Da-Vinci API. No key, no signup.

npx leonardo-davinci random --subject anatomy
npx leonardo-davinci search flying machine
npx leonardo-davinci folio codex-atlanticus 1646 --full
npx leonardo-davinci download codex-arundel 30

Install

npm install -g leonardo-davinci     # installs the `da-vinci` command
da-vinci <command>
# or run one-off with npx leonardo-davinci — nothing to install

Requires Node 18.17+.

Commands

| Command | What it does | |---|---| | collections | List all 28 collections | | collection <slug> | One collection and its pages (--limit, --offset) | | folio <slug> <index> | Read one page — summary, highlights, translation (--full) | | subjects | The frozen 25-term subject vocabulary | | subject <id> | Every page tagged with a subject | | search <query…> | Full-text search (--subject, --collection) | | random | A random page (--subject, --collection) | | download <slug> <index> | Save the scan (--size thumbnail\|medium\|highRes, --out <dir>) | | open <slug> [index] | Open the page on venivididavinci.com |

Add --json to any read command for machine-readable output.

Rate limits & keys

Anonymous use is free at 60 requests/hour. For more, pass --api-key or set DAVINCI_API_KEY. See authentication.

Attribution

Anything you build with this content must credit venivididavinci.com and link the source page. Every folio response includes a ready-made attribution string. Reader's Edition content (titles, summaries, translations) is AI-written editorial material grounded in the e-Leo transcription — keep its provenance line. Full terms: attribution.

Security

This package is built to be maximally auditable:

  • Zero runtime dependencies — the entire tool is one file of Node builtins.
  • No install scripts, no telemetry, no config files.
  • HTTPS only, to venivididavinci.com origins exclusively (downloads included — hosts are allowlisted even though URLs come from the API).
  • All inputs validated before touching URLs, paths, or processes; the browser opener uses execFile (no shell); downloads are traversal-safe and never overwrite existing files.
  • API keys are sent only to the API origin and never logged.

Audit it yourself: npm pack leonardo-davinci --dry-run — it ships dist/cli.js, README.md, and LICENSE, nothing else.