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

strapi-plugin-reservation-v5

v1.0.0

Published

A comprehensive reservation and booking system plugin for Strapi 5 with time slots, schedules, and booking management

Readme

Strapi Plugin Reservation v5

npm version License: MIT Node.js Strapi

A comprehensive reservation and booking system plugin for Strapi 5 with time slots, schedules, and booking management.

Features

  • Reservation Management - Complete CRUD operations for reservations
  • Time Slot System - Flexible time slot management with availability checking
  • Schedule Management - Configure working hours and availability
  • Admin Interface - Beautiful admin UI for managing reservations
  • REST API - Full REST API for frontend integration
  • TypeScript Support - Fully typed for better development experience
  • Strapi 5 Compatible - Built specifically for Strapi 5

Installation

npm install strapi-plugin-reservation-v5

Configuration

Add the plugin to your Strapi configuration:

// config/plugins.js
module.exports = {
  reservation: {
    enabled: true,
  },
};

Or for TypeScript:

// config/plugins.ts
export default {
  reservation: {
    enabled: true,
  },
};

Usage

Admin Interface

After installation, you'll find:

  • Reservation menu item in the main navigation
  • Settings section for plugin configuration
  • Complete reservation management interface

API Endpoints

The plugin provides the following endpoints:

GET    /api/reservation/reservations          # List all reservations
POST   /api/reservation/reservations          # Create new reservation
GET    /api/reservation/reservations/:id      # Get reservation by ID
PUT    /api/reservation/reservations/:id      # Update reservation
DELETE /api/reservation/reservations/:id      # Delete reservation

GET    /api/reservation/time-slots/available  # Get available time slots
GET    /api/reservation/schedules             # Get schedules
POST   /api/reservation/schedules             # Create schedule
PUT    /api/reservation/schedules/:id         # Update schedule
DELETE /api/reservation/schedules/:id         # Delete schedule

Content Types

The plugin creates the following content types:

  • Reservation - Main reservation entity
  • Schedule - Working hours and availability configuration
  • Time Slot - Individual time slots for bookings

Development

Prerequisites

  • Node.js 18+
  • Strapi 5.x
  • TypeScript

Local Development

# Clone the repository
git clone https://github.com/remifokz/strapi-plugin-reservation-v5.git

# Install dependencies
npm install

# Build the plugin
npm run build

# Watch for changes
npm run watch

Contributing

  1. Fork the repository
  2. Create your feature branch (git checkout -b feature/amazing-feature)
  3. Commit your changes (git commit -m 'Add some 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.

Support

If you encounter any issues or have questions:

Changelog

1.0.0

  • Initial release
  • Complete reservation system
  • Admin interface
  • REST API
  • TypeScript support