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

fluent-vx

v0.1.19

Published

Zero-config frontend framework with automatic routing and optimization

Readme

Fluent VX

npm version License: MIT TypeScript GitHub stars GitHub issues Build Status

Zero-config frontend framework with automatic routing and optimization

Fluent VX is a next-generation frontend framework that prioritizes developer experience with zero configuration. It provides automatic routing, reactive templates, and intelligent optimization out of the box.

✨ Features

  • 🚀 Zero Configuration - Just vx init and start coding
  • 🛣️ Automatic File-based Routing - Pages in src/pages/ become routes
  • Built-in Reactivity - Reactive data binding without extra setup
  • 🎨 Simple Template Syntax - Clean .vx files with familiar syntax
  • 🔧 Auto Optimization - Intelligent bundling and minification
  • 📦 Modern Build System - ES modules, TypeScript support
  • 🛠️ Professional CLI - Create, develop, build, and deploy
  • 🔌 Extensible Architecture - Plugin system for integrations

🚀 Quick Start

Create a new project

# Create a new Fluent VX project
npx vx create my-app
cd my-app

# Install dependencies
npm install

# Start development server
npm run dev

Initialize in existing directory

# Initialize in current directory
npx vx init

# Install dependencies
npm install

# Start development server
npm run dev

That's it! Your app is running at http://localhost:5172

📁 Project Structure

my-app/
├── src/
│   ├── app.vx              # Main application layout
│   ├── pages/              # File-based routing
│   │   ├── index.vx        # Home page (/)
│   │   └── about.vx        # About page (/about)
│   └── styles/
│       └── global.css      # Global styles
├── fluent-vx.config.ts     # Configuration (optional)
├── package.json
└── README.md

🎨 Template Syntax

Fluent VX uses a simple, reactive template syntax:

// pages/index.vx
#data
  title = "Hello World"
  count = 0
  items = ["Item 1", "Item 2", "Item 3"]
#end data

#view
  <div class="container">
    <h1>{{ title }}</h1>
    <p>Count: {{ count }}</p>
    <button @click="count++">Increment</button>

    <ul>
      @for(item in items)
        <li>{{ item }}</li>
      @end for
    </ul>

    @if(count > 5)
      <p>Count is high!</p>
    @end if
  </div>
#end view

#style
  .container {
    max-width: 800px;
    margin: 0 auto;
    padding: 2rem;
  }
#end style

🛣️ Routing

Routes are automatically created from files in src/pages/:

src/pages/
├── index.vx        →  /
├── about.vx        →  /about
├── blog.vx         →  /blog
├── blog/
│   ├── index.vx    →  /blog
│   └── [id].vx     →  /blog/:id
└── [...slug].vx    →  /blog/*

🔧 CLI Commands

# Create new project
vx create <name>

# Initialize in current directory
vx init

# Start development server
vx dev

# Build for production
vx build

# Preview production build
vx preview

# Add integration
vx add <integration-name>

# Remove integration
vx remove <integration-name>

# Verify and fix integrations
vx iv

🔌 Integrations

Fluent VX supports integrations for enhanced functionality:

# Add Tailwind CSS
vx add tailwind

# Add MDX support
vx add mdx

# Add sitemap generation
vx add sitemap

🤝 Contributing

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

  1. Fork the repository
  2. Create your feature branch (git checkout -b feature/amazing-feature)
  3. Commit your changes (git commit -m 'Add amazing feature')
  4. Push to the branch (git push origin feature/amazing-feature)
  5. Open a Pull Request

📄 License

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

Built with ❤️ by VeelV Team