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 πŸ™

Β© 2025 – Pkg Stats / Ryan Hefner

@tortoise-os/create-bun-move

v0.3.0

Published

🐒 CLI to create new TortoiseOS DeFi projects on Sui blockchain

Readme

@tortoise-os/create-bun-move

🐒 CLI tool to create new TortoiseOS DeFi projects on Sui blockchain.

πŸš€ Quick Start

# Using bunx (recommended)
bunx @tortoise-os/create-bun-move my-tortoise-app

# Or using npm
npx @tortoise-os/create-bun-move my-tortoise-app

# With options
bunx @tortoise-os/create-bun-move my-app -t minimal --no-docker

πŸ“– Usage

Interactive Mode

bunx @tortoise-os/create-bun-move

You'll be prompted for:

  • Project name
  • Template (Full Stack or Minimal)
  • Sui Move contracts (Yes/No)
  • Docker configuration (Yes/No)
  • Magic UI components (Yes/No)

Command Line Options

create-bun-move [project-name] [options]

Arguments:
  project-name           Name of your project

Options:
  -V, --version          output the version number
  -t, --template <type>  Project template (minimal|full) (default: "full")
  --no-sui               Skip Sui Move contracts
  --no-docker            Skip Docker setup
  -h, --help             display help for command

Examples

# Full stack project with all features
bunx @tortoise-os/create-bun-move my-defi-app

# Minimal project without Docker
bunx @tortoise-os/create-bun-move simple-app -t minimal --no-docker

# Web-only project without Move contracts
bunx @tortoise-os/create-bun-move frontend-app --no-sui

🎯 Templates

Full Stack Template

Includes:

  • βœ… Next.js 14 Web App
  • βœ… Express API Server
  • βœ… Sui Move Smart Contracts
  • βœ… Magic UI Components
  • βœ… Docker Configuration
  • βœ… AI Integration Ready

Minimal Template

Includes:

  • βœ… Next.js 14 Web App
  • βœ… Sui Move Smart Contracts
  • βœ… Basic UI Components

πŸ“¦ What Gets Created

my-tortoise-app/
β”œβ”€β”€ apps/
β”‚   β”œβ”€β”€ web/          # Next.js frontend
β”‚   └── api/          # Express API (full template)
β”œβ”€β”€ packages/
β”‚   β”œβ”€β”€ core/         # Core utilities
β”‚   β”œβ”€β”€ sdk/          # Sui SDK wrapper
β”‚   └── ui/           # Magic UI components
β”œβ”€β”€ move/             # Sui Move contracts
β”œβ”€β”€ docker/           # Docker configs (if enabled)
β”œβ”€β”€ .clauderc         # AI assistant instructions (Bun-first!)
β”œβ”€β”€ .cursorrules      # Cursor IDE rules
β”œβ”€β”€ package.json
β”œβ”€β”€ .gitignore
└── README.md

πŸ€– AI Assistant Support

Every project includes .clauderc and .cursorrules files that instruct Claude, Cursor, and other AI coding assistants to:

  • βœ… Always use bun instead of npm/yarn/pnpm
  • βœ… Use bunx instead of npx
  • βœ… Follow TortoiseOS best practices
  • βœ… Use proper Sui Move commands

This ensures AI assistants give you bun-first suggestions automatically!

πŸ› οΈ After Creation

cd my-tortoise-app

# Install dependencies
bun install

# Start Docker services (if enabled)
docker compose up -d

# Initialize Sui (if included)
task sui:init

# Start development server
bun run dev

The app will be running at http://localhost:3000

πŸ”§ Development

# Start web app
bun run dev

# Build for production
bun run build

# Run tests
bun test

# Lint code
bun run lint

🌐 Features

DeFi Products Included

  • πŸ”„ TortoiseSwap - AI-powered AMM
  • πŸ’° TortoiseVault - Auto-compounding yield
  • πŸ’΅ TortoiseUSD - NFT-backed stablecoin
  • πŸ“Š And 7 more DeFi protocols!

Tech Stack

  • Frontend: Next.js 14, React 18, TypeScript
  • Styling: Tailwind CSS, Radix UI, Magic UI
  • Blockchain: Sui, Move Language
  • Package Manager: Bun
  • Containerization: Docker (optional)

🎨 Magic UI Components

If you enable Magic UI, you get:

  • ✨ Animated backgrounds (RetroGrid, Particles)
  • 🎯 Text animations (SparklesText, HyperText)
  • 🎨 Interactive components (BorderBeam, BlurFade)
  • 🌈 Beautiful buttons (RainbowButton, ShimmerButton)

πŸ“š Documentation

🀝 Contributing

We welcome contributions! Please see our Contributing Guide.

πŸ“„ License

MIT Β© TortoiseOS Team

🐒 About TortoiseOS

TortoiseOS is an AI-Native DeFi Operating System built on Sui blockchain. It provides a complete suite of DeFi products powered by machine learning and artificial intelligence.


Created with 🐒 by the TortoiseOS team