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

neutralinojs-plugin-vite

v0.0.1

Published

![License: MIT](https://img.shields.io/badge/License-MIT-yellow.svg) ![Made with TypeScript](https://img.shields.io/badge/made%20with-TypeScript-blue.svg) ![NeutralinoJS Plugin](https://img.shields.io/badge/plugin-NeutralinoJS-blue.svg)

Readme

NeutralinoJS Vite Plugin

License: MIT Made with TypeScript NeutralinoJS Plugin

[!CAUTION] This plugin is still under active development. Future updates may introduce breaking changes or compatibility issues.

A neu-cli plugin that integrates Vite into your NeutralinoJS projects. Create and develop lightweight, cross-platform desktop applications using your favorite frontend framework with hot module replacement (HMR) support.

Features

  • 🚀 Fast Development - Vite's lightning-fast HMR for instant feedback
  • 🎨 Multiple Frameworks - Support for React, Vue, Svelte, Solid, Preact, Lit, Qwik, and SvelteKit
  • 📦 Easy Setup - Interactive project creation wizard
  • 🔧 TypeScript Support - First-class TypeScript support for all frameworks

Installation

Install the plugin using the neu CLI:

neu plugins --add neutralinojs-plugin-vite

Usage

This plugin extends the neu CLI with the vite command. All commands are executed using:

neu vite <command>

Creating a New Project

To create a new NeutralinoJS project with Vite integration, run:

neu vite create

This will start an interactive wizard that guides you through the project setup:

  1. Project name - Enter your project name (default: neutralinojs-vite-app)
  2. Framework selection - Choose from available frameworks:
    • React - TypeScript, JavaScript, SWC, React Compiler variants
    • Vue - TypeScript or JavaScript
    • Svelte - TypeScript, JavaScript, or SvelteKit
    • Solid - TypeScript or JavaScript
    • Preact - TypeScript or JavaScript
    • Lit - TypeScript or JavaScript
    • Qwik - TypeScript or JavaScript
  3. Install dependencies - Optionally install dependencies after creation
  4. Run the app - Optionally run the application after creation (like neu vite dev)

Running the Development Server

To start the Vite development server with NeutralinoJS:

neu vite dev

This command will:

  1. Verify your NeutralinoJS setup
  2. Start the Vite development server with HMR
  3. Launch the NeutralinoJS application window

Project Structure

After creating a project, you'll have the following structure:

my-project/
├── neutralino.config.json    # NeutralinoJS configuration
├── vite-src/                 # Vite project source
│   ├── src/                  # Your application source code
│   ├── public/               # Static assets
│   ├── dist/                 # Built files (generated)
│   └── vite.config.ts        # Vite configuration
└── extensions/               # NeutralinoJS extensions

[!NOTE]
The contents inside vite-src/ may vary depending on the framework you selected during project creation.

Configuration

Vite Configuration

You can customize Vite by editing the vite.config.ts (or vite.config.js) file inside the vite-src/ directory.

For more details, refer to the official Vite documentation.

NeutralinoJS Configuration

Configure your NeutralinoJS application by editing the neutralino.config.json file in your project root. This file controls:

  • Window properties (size, title, resizable, etc.)
  • Native API permissions
  • Application metadata
  • Build settings

For a complete list of options, check the official NeutralinoJS documentation.

Vite-specific Configuration

The plugin adds a vite section under cli in neutralino.config.json:

{
  "cli": {
    "vite": {
      "projectPath": "/vite-src/"
    }
  }
}

Requirements

  • Node.js >= 16
  • neu-cli installed globally

License

This project is licensed under the MIT License.