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

documint-edm

v1.0.2

Published

Decentralized engineering document management using git-ariadne for Arweave-git integration. Create, track, and manage engineering documents with full workflow control, versioning, and permanent decentralized storage.

Downloads

378

Readme

DocuMint

Decentralized Engineering Document Management powered by Arweave

npm npm License

npnpm | docs

DocuMint is an open-source engineering document management system that uses git-ariadne for Arweave-git integration, providing permanent, decentralized storage for technical documents with full version control and workflow management.

Features

  • Decentralized Storage: Documents are permanently stored on Arweave blockchain
  • Git Integration: Uses git-ariadne for familiar git workflows
  • Document Workflow: Built-in state machine (draft → review → approved → released)
  • Multiple Document Types: Engineering specs, schematics, reports, calculations, standards
  • Full-Text Search: Search across all documents and metadata
  • Metadata Validation: Schema-based validation for document types
  • Revision Control: Track document revisions and supersession
  • Web UI: Browser-based interface for document browsing
  • Encryption: Private repository support with AES-256-GCM + RSA encryption

Installation

npm install

Quick Start

Initialize a Document Repository

cd my-docs
documint init           # Initialize DocuMint structure
ariadne init            # Initialize Arweave remote (requires wallet)

Create Documents

documint create engineering_spec "Valve Specification" --project "Steam Engine"
documint create schematic "Piston Diagram" --project "Steam Engine"

Document Workflow

# Advance document state
documint workflow "valve-spec.spec" advance

# Reject and send back to draft
documint workflow "valve-spec.spec" reject

# Check status and history
documint workflow "valve-spec.spec" --status

Revision Management

# Bump revision
documint revision "valve-spec.spec" --bump --note "Updated tolerance"

# Link supersession
documint revision "valve-spec-v2.spec" --supersedes "valve-spec.spec"

Search

documint search "tolerance" --project "Steam Engine"
documint search --rebuild

Push to Arweave

git add .
git commit -m "Add valve specification"
ariadne push --wallet ./wallet.json

Document Types

| Type | Extensions | Description | |------|------------|-------------| | engineering_spec | .spec, .eng | Technical specifications | | schematic | .sch, .dxf, .svg | Diagrams and schematics | | report | .rpt, .report, .doc | Engineering reports | | calculation | .calc, .xlsx | Engineering calculations | | standard | .std, .proc | Standards and procedures |

Metadata Fields

Documents support type-specific metadata:

Engineering Spec:

  • project (required)
  • discipline (mechanical, electrical, civil, chemical, software)
  • revision (R1, R2, ...)
  • status (draft, review, approved, released, archived)

Report:

  • reportNumber (required)
  • classification (public, internal, confidential, proprietary)
  • department
  • author

Architecture

documint/
├── cli/              # CLI entry point
├── commands/         # Command implementations
├── lib/
│   ├── documents/   # Document management
│   ├── search/      # Search engine
│   ├── metadata/    # Metadata validation
│   └── config/      # Configuration
└── ui/              # Web interface

DocuMint extends ariadne-cli, reusing:

  • isomorphic-git for git operations
  • ArDrive Turbo for Arweave uploads
  • AO (HyperBEAM) for indexing

Related Tools

DocuLog - Engineering Logbook

For engineering logbook and PE registration needs, see DocuLog:

  • Daily Logbook Entries: Time-ordered entries for professional practice
  • Counter-Signature Workflow: Supervisor review and approval chain
  • PE Attestation: Professional Engineer registration support
  • CPD Tracking: Continuing Professional Development summary
  • Professional Seals: PE seal application with content hash verification
cd doculog
npm install
doculog init --name "Jane Engineer" --email "[email protected]"
doculog entry new --date 2024-04-28 --project "Bridge Design"
doculog attest sign <entry-id> --user "Dr. Supervisor"
doculog attest approve <entry-id> --user "Dr. PE" --license "PE-12345" --seal
doculog cpd --summary

See DocuLog for full documentation.

License

GNU Affero General Public License v3.0 (AGPLv3)

You are free to:

  • Use this software for any purpose
  • Study how it works and adapt it to your needs
  • Distribute copies to others
  • Modify and create derivative works

Under the condition that:

  • Share alike - Any modified or derivative works must be distributed under the same AGPL license terms
  • Network use is distribution - Using this software over a network counts as distribution, requiring you to make source code available

For details, see: https://www.gnu.org/licenses/agpl-3.0.html

Links

Install from npm

npm install documint