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

create-project-management-tool

v1.0.0

Published

A Quasar-based project management application template with Django backend integration

Readme

create-project-management-tool

A Quasar-based project management application template with Django backend integration.

Features

  • 🚀 Quasar Framework (Vue 3) - Modern, fast, and responsive UI
  • 📊 Project Management Dashboard - Comprehensive project tracking
  • 🎯 Milestone Tracking - Track project milestones and deadlines
  • 🔄 Django REST API Integration - Ready to connect with Django backend
  • 💅 Modern UI Components - Beautiful Quasar components out of the box
  • 📱 Responsive Design - Works seamlessly on all devices
  • 🗑️ Deleted Projects Management - Soft delete with recovery option
  • 🔍 Search & Filter - Advanced project search capabilities

Quick Start

Create a new project management application:

npm create project-management-tool my-app
cd my-app
npm install
npm run dev

Or with npx:

npx create-project-management-tool my-app

Or with yarn:

yarn create project-management-tool my-app

What's Included

Components

  • ProjectCard - Display project cards with key information
  • ProjectDetail - Detailed project view with all information
  • ProjectEdit - Edit project details and settings
  • MilestoneManager - Manage project milestones
  • MilestoneItem - Individual milestone component
  • ProjectsTopBar - Navigation and search bar
  • DeletedProjectCard - Display and restore deleted projects

Pages

  • IndexPage - Main dashboard with project listing
  • DeletedProjectsPage - View and manage deleted projects

Features

  • Pre-configured Quasar setup with Vite
  • Axios for API communication
  • Pinia for state management
  • Vue Router for navigation
  • ESLint and Prettier configuration
  • Composables for reusable logic (useProjectSearch, useDeletedProjects)

Backend Setup

This frontend is designed to work with a Django REST API backend. The expected API endpoints include:

  • GET /api/projects/ - List all projects
  • POST /api/projects/ - Create a project
  • GET /api/projects/:id/ - Get project details
  • PUT /api/projects/:id/ - Update a project
  • DELETE /api/projects/:id/ - Delete a project
  • GET /api/projects/deleted/ - List deleted projects
  • POST /api/projects/:id/restore/ - Restore deleted project

Check the Django backend setup in the project-dashboard workspace for complete backend implementation.

Available Scripts

After creating your project, you can run:

npm run dev

Starts the development server with hot-reload at http://localhost:9000

npm run build

Builds the app for production to the dist folder

npm run lint

Runs ESLint to check for code quality issues

npm run format

Formats code with Prettier

Project Structure

my-app/
├── public/            # Static assets
├── src/
│   ├── assets/       # Images, fonts, etc.
│   ├── boot/         # Boot files (axios setup)
│   ├── components/   # Vue components
│   ├── composables/  # Reusable composition functions
│   ├── css/          # Global styles
│   ├── layouts/      # Layout components
│   ├── pages/        # Page components
│   ├── router/       # Vue Router configuration
│   └── stores/       # Pinia stores
├── index.html        # Entry HTML file
├── quasar.config.js  # Quasar configuration
└── package.json      # Dependencies and scripts

Configuration

API Base URL

Update the Axios base URL in src/boot/axios.js:

const api = axios.create({
  baseURL: 'http://your-api-url.com/api',
})

Quasar Configuration

Customize Quasar settings in quasar.config.js:

  • Build options
  • Dev server configuration
  • Quasar plugins
  • And more...

See Configuring quasar.config.js for details.

Publishing Your Own Version

If you want to create your own template based on this:

  1. Fork this repository
  2. Modify the template files in the template/ directory
  3. Update package.json with your repository URL
  4. Publish to npm:
npm login
npm publish

License

MIT © Chris Fakiolas

Contributing

Contributions are welcome! Please feel free to submit a Pull Request.

Support

For issues and questions, please open an issue on GitHub.