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

ordojs

v0.5.0-beta.4

Published

A revolutionary web framework with compile-time optimizations and unified client-server development

Downloads

19

Readme

OrdoJS Framework

Version License Node.js pnpm

A revolutionary web framework with compile-time optimizations and unified client-server development

Status: Beta - Not recommended for production use

🚀 Quick Start

Installation

# Install the OrdoJS CLI globally
npm install -g @ordojs/cli@beta

# Or using pnpm (recommended)
pnpm add -g @ordojs/cli@beta

Create Your First Project

# Create a new OrdoJS project
ordojs init my-app

# Navigate to your project
cd my-app

# Start the development server
ordojs dev

Visit http://localhost:3000 to see your application running!

✨ Features

  • 🔧 Compile-time Optimizations - Advanced code analysis and optimization at build time
  • 🌐 Unified Client-Server Development - Write once, run everywhere
  • ⚡ Lightning Fast - Optimized for performance with minimal runtime overhead
  • 🎨 Beautiful UI Components - Built-in component library with stunning visuals
  • 🛠️ TypeScript First - Full TypeScript support with excellent type inference
  • 📦 Monorepo Architecture - Scalable package structure for enterprise applications
  • 🔍 Hot Module Replacement - Instant feedback during development
  • 📱 Responsive Design - Mobile-first approach with adaptive layouts

📦 Project Structure

ordojs/
├── packages/
│   ├── cli/          # Command-line interface
│   ├── core/          # Core compiler and runtime
│   ├── docs/          # Documentation site
│   └── vscode-extension/ # VS Code extension
├── examples/          # Example applications
└── tests/            # Test suites

🛠️ Development

Prerequisites

  • Node.js >= 18.0.0
  • pnpm >= 8.0.0

Setup

# Clone the repository
git clone https://github.com/Piggzy76/OrdoJS.git
cd ordojs

# Install dependencies
pnpm install

# Build all packages
pnpm build

# Run tests
pnpm test

Available Scripts

# Development
pnpm dev          # Start development server
pnpm build        # Build all packages
pnpm test         # Run test suite
pnpm test:watch   # Run tests in watch mode

# Code Quality
pnpm lint         # Run ESLint
pnpm lint:fix     # Fix linting issues
pnpm format       # Format code with Prettier
pnpm typecheck    # Run TypeScript type checking

# Maintenance
pnpm clean        # Clean build artifacts

📚 Documentation

🎯 CLI Commands

# Project Management
ordojs init <project-name>    # Create a new project
ordojs dev                    # Start development server
ordojs build                  # Build for production
ordojs deploy                 # Deploy to hosting platform

# Development Tools
ordojs test                   # Run test suite
ordojs lint                   # Lint code
ordojs format                 # Format code

# Information
ordojs version                # Show detailed version info
ordojs --help                 # Show help information

🔧 Configuration

OrdoJS uses a simple configuration file (ordojs.config.js) for project settings:

export default {
  // Build configuration
  build: {
    outDir: 'dist',
    minify: true,
    sourcemap: true,
  },

  // Development server
  dev: {
    port: 3000,
    host: 'localhost',
  },

  // Compiler options
  compiler: {
    target: 'es2020',
    module: 'esnext',
  },
};

🤝 Contributing

We welcome contributions! Please see our Contributing Guide for details.

Development Setup

  1. Fork the repository
  2. Create a feature branch: git checkout -b feature/amazing-feature
  3. Make your changes
  4. Run tests: pnpm test
  5. Commit your changes: git commit -m 'Add amazing feature'
  6. Push to the branch: git push origin feature/amazing-feature
  7. Open a Pull Request

📄 License

This project is licensed under the MIT License - see the LICENSE file for details.

🆘 Support

��️ Roadmap

  • [ ] v0.6.0 - Enhanced component library
  • [ ] v0.7.0 - Advanced debugging tools
  • [ ] v0.8.0 - Plugin system
  • [ ] v1.0.0 - Production ready release

🙏 Acknowledgments

  • Built with ❤️ by the OrdoJS Framework Team
  • Inspired by modern web development practices
  • Powered by TypeScript and Node.js

Version: 0.5.0-beta.1 Last Updated: December 2024 Status: Beta - Active Development