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

astro-gui

v0.1.1

Published

Manage your Astro project using graphical interface. Inspired by Vue CLI GUI.

Downloads

14

Readme

Astro GUI

Manage your Astro project using graphical interface. Inspired by Vue CLI GUI.

Setup

  1. Install astro-gui

    # Using npm
    npm i astro-gui
    
    # Using yarn
    yarn add astro-gui
    
    # Using pnpm
    pnpm add astro-gui
  2. Add the integration to integrations property in your astro.config.mjs file

    // astro.config.mjs
    import astroGUI from 'astro-gui';
    
    export default {
        // ...
        integrations: [astroGUI()],
    };
  3. Add the following to your astro.config.mjs file

    // astro.config.mjs
    export default {
        // ...
        vite: {
            ssr: {
                external: ['preferred-pm', 'execa'],
            },
        },
    };
  4. Parts of the dashboard UI is built using SolidJS

    Install solid (Detailed instructions)

    # Using npm
    npx astro add solid
    
    # Using yarn
    yarn astro add solid
    
    # Using pnpm
    pnpx astro add solid
  5. Parts of the dashboard UI also requires SSR

    5.1. Install node adapter (Detailed instructions)

    # Using npm
    npm i @astrojs/node
    
    # Using yarn
    yarn add @astrojs/node
    
    # Using pnpm
    pnpx add @astrojs/node

    5.2. Add the adapter to adapter property in your astro.config.mjs file

    // astro.config.mjs
    import nodejs from '@astrojs/node';
    
    export default {
        // ...
        adapter: nodejs(),
    };
  6. Currently you have to start the server using --experimental-integrations flag

    // package.json
    {
        // ...
        "scripts": {
            // ...
            "dev": "astro dev --experimental-integrations",
            "start": "astro dev --experimental-integrations",
        },
    }

Configuration

packageManager

Your package manager for the project is automatically detect, but in case you need to change it

Supported values - 'npm' | 'yarn' | 'pnpm'

// astro.config.mjs
import astroGUI from 'astro-gui';

export default {
    integrations: [astroGUI({
        packageManager: 'yarn',
    })],
};

Getting started

The dashboard UI is built using Astro itself. That means all the files making up the whole GUI are generated and copied directly in your project for you to freely modify.

Pages

  • Integrations - /astro-gui/integrations

    integrations

Generated files

.
├── public
│   └── assets
│       └── astro-gui
│           ├── clipboard.svg
│           ├── deno.svg
│           ├── lit.svg
│           ├── netlify.svg
│           ├── node.svg
│           ├── partytown.svg
│           ├── preact.svg
│           ├── react.svg
│           ├── sitemap.svg
│           ├── solid.svg
│           ├── svelte.svg
│           ├── tailwind.svg
│           ├── terminal.svg
│           ├── turbolinks.svg
│           ├── vercel.svg
│           └── vue.svg
└── src
    ├── components
    │   └── astro-gui
    │       ├── AddButton.tsx
    │       ├── CopyButton.tsx
    │       └── ToastItem.tsx
    ├── data
    │   └── astro-gui
    │       └── integrations.ts
    ├── layouts
    │   └── astro-gui
    │       └── BaseLayout.astro
    └── pages
        └── astro-gui
            └── integrations.astro

What comes after the hackathon

There are a lot of possibilities for which direction this project could go, what features could be supported. Sky really is the limit here. Some example that come to mind:

  • Pages section for managing pages of the project
  • API routes section for managing API routes of the SSR project
  • Design System section with components
  • Automatic code generator for boilerplate stuff (components, layouts, pages, API routes etc.)
  • Project configuration, creation, updating, managing from within the GUI
  • Lighthouse report integration (similar to what Netlify introduced)
  • One-click deployments
  • The GUI dashboard should be extensible and modifiable without too much opinions