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

hint-lang-cli

v0.1.0

Published

Hint Language CLI - Zero dependency fullstack development

Downloads

11

Readme

hint-lang-cli

The easiest way to build fullstack applications with Hint Language.

🚀 Quick Start

# Install CLI (one-time)
npm install -g hint-lang-cli

# Create project
hint create my-app

# Start developing
cd my-app
hint dev

That's it. The compiler downloads automatically. No Rust. No PATH configuration.


✨ Features

  • 🎯 Zero Setup - Compiler auto-downloads on first run
  • 🔥 Hot Reload - Edit .ht files, browser updates instantly
  • 📦 Templates - Start with website, electron, fullstack, and more
  • 🌐 Fullstack - Frontend (WASM) + Backend (Native) in one language
  • 🚀 Production Ready - Build and deploy anywhere

📖 Commands

Create Project

# Create with default template (website)
hint create my-app

# Choose template
hint create my-app --template electron
hint create my-app --template fullstack
hint create my-app --template tauri

Development

# Start dev server
hint dev

# Custom port
hint dev --port 8080

# Don't open browser
hint dev --no-open

Build

# Build for production
hint build

# Custom target
hint build --target wasm32
hint build --target native

# Custom output
hint build --output build

Serve

# Serve production build
hint serve

# Custom port
hint serve --port 8080

Compiler Management

# Install/update compiler
hint compiler install

# Check version
hint compiler version

📁 Project Structure

my-app/
├── .hint/
│   └── compiler/          # Auto-downloaded compiler
├── src/
│   ├── main.ht            # Entry point
│   ├── pages/
│   │   └── index.ht       # Pages
│   ├── components/        # Reusable components
│   └── api/               # Backend API (fullstack)
├── public/                # Static assets
├── dist/                  # Build output
├── hint.config.json       # Hint config
└── package.json           # Node dependencies

⚙️ Configuration

hint.config.json

{
  "target": "wasm32",
  "entry": "src/main.ht",
  "output": "dist/app.wasm",
  "devServer": {
    "port": 3000,
    "open": true
  },
  "build": {
    "optimize": true,
    "sourceMap": false
  }
}

package.json

{
  "scripts": {
    "dev": "hint dev",
    "build": "hint build",
    "start": "hint serve"
  },
  "hintc": {
    "version": "0.2.0",
    "autoDownload": true
  }
}

🎨 Templates

website (default)

Pure Hint website with WASM frontend.

hint create my-app --template website

fullstack

Frontend + Backend + Database in pure Hint.

hint create my-app --template fullstack

electron

Desktop app with Electron.

hint create my-app --template electron

tauri

Lightweight desktop app with Tauri.

hint create my-app --template tauri

🛠 Environment

Requirements

  • Node.js 16+ (for CLI)
  • Any modern browser (for running apps)

Supported Platforms

| Platform | Status | |----------|--------| | Windows x64 | ✅ | | macOS x64 | ✅ | | macOS ARM (M1/M2) | ✅ | | Linux x64 | ✅ |


📚 Documentation


🤝 Contributing

# Clone repo
git clone https://github.com/hint-lang/hintc.git

# Install dependencies
cd packages/cli
npm install

# Link locally
npm link

# Test
hint --version

📄 License

MIT License - See LICENSE for details.


Built with ❤️ using Hint Language