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

hamroun-framework-create

v1.0.125

Published

A simple web framework for building applications.

Downloads

47

Readme

hamroun-framework-create

A modern full-stack JavaScript framework with built-in file-based routing and automatic API generation.

Features

  • 🚀 Modern full-stack JavaScript framework
  • ⚡ Built with Solid.js and TailwindCSS
  • 📁 File-based routing
  • 🔄 Hot Module Replacement
  • 🛠️ Built-in CLI tools for project generation
  • 🎨 Automatic Tailwind configuration
  • 📱 Responsive by default

Quick Start

# Create a new project
npx hamroun-framework-create create my-app

# Navigate to the project
cd my-app

# Start the development server
npm start

CLI Commands

Create a New Project

npx hamroun-framework-create create <project-name>

Generate Components/Pages/Layouts

# Using full command
npm run generate <type> <name>

# Using shorthand
npm run g <type> <name>

# Examples
npm run g component Button
npm run g page About
npm run g layout Admin

Available generators:

  • component - Generate a new component
  • page - Generate a new page with routing
  • layout - Generate a new layout

Project Structure

my-app/
├── .dist/              # Build output
├── src/
│   ├── app/           # Frontend application
│   │   ├── components/# Shared components
│   │   ├── layout.jsx # Root layout
│   │   └── home/      # Home page
│   └── api/           # API routes
└── dep/
    └── front/         # Frontend dependencies

Features

File-based Routing

  • Create pages by adding page.jsx files in src/app/
  • Automatic route generation based on file structure
  • Nested routing support

Layouts

  • Default layout provided
  • Create custom layouts per route
  • Nested layouts support

Components

  • Built-in component generation
  • TailwindCSS integration
  • Automatic style loading

API Routes

  • Automatic API route generation
  • Simple route definition
  • HTTP method handling

Development Workflow

  1. Create a new page:
npm run g page About
  1. Add a custom layout:
npm run g layout About
  1. Create reusable components:
npm run g component Button

Configuration

The framework comes with sensible defaults but can be customized:

  • Vite configuration in dep/front/vite.config.js
  • TailwindCSS configuration in dep/front/tailwind.config.js
  • Server configuration in .dist/index.js

License

MIT