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

@brandazm/dynamic-permissions

v1.1.3

Published

A flexible and powerful permissions management system for NestJS applications with built-in security features

Readme

NestJS Dynamic Permissions

A flexible and powerful permissions management system for NestJS applications with built-in security features.

Features

Permission Management

  • Dynamic role-based access control (RBAC)
  • Fine-grained permission control
  • Role hierarchy support
  • Public routes configuration
  • Permission strategy (whitelist/blacklist)

Security Features

  • Rate limiting protection
  • CORS configuration
  • Helmet security headers
  • Request validation
  • Multiple security templates (Basic, Strict, Enterprise)

Configuration Management

  • Multiple configuration templates
  • Configuration publishing
  • Easy updates and migrations
  • TypeScript type definitions
  • Environment-specific settings

Error Handling

  • Centralized error handling
  • Custom exception classes
  • Standardized error responses
  • Environment-specific error details

Audit & Monitoring

  • Audit logging
  • Performance monitoring
  • Security event tracking
  • Detailed logging system

Installation

npm i @brandazm/dynamic-permissions

Quick Start

1. Initialize Configuration

# Initialize with basic configuration
npx nestjs-permissions init

# Or use a specific template
npx nestjs-permissions init -t advanced

2. Module Setup

import { PermissionsModule } from '@brandazm/dynamic-permissions';

@Module({
  imports: [
    PermissionsModule.register()
  ]
})
export class AppModule {}

3. Apply Permissions

import { RequirePermission } from '@brandazm/dynamic-permissions';

@Controller('users')
export class UserController {
  @RequirePermission(['user.read'])
  @Get()
  findAll() {
    return this.userService.findAll();
  }
}

Security Configuration

1. Initialize Security Settings

# Publish security configuration
npx nestjs-permissions publish-security-config

# Use strict security template
npx nestjs-permissions publish-security-config -t strict

2. Available Security Templates

  • Basic: Essential security features
  • Strict: Enhanced security with stricter settings
  • Enterprise: Full-featured security for enterprise applications

3. Security Features

const securityConfig = {
  rateLimit: {
    enabled: true,
    windowMs: 15 * 60 * 1000,
    max: 100
  },
  cors: {
    enabled: true,
    allowedOrigins: ['https://your-domain.com'],
    allowedMethods: ['GET', 'POST'],
    allowedHeaders: ['Content-Type', 'Authorization']
  },
  helmet: {
    enabled: true,
    contentSecurityPolicy: true,
    // ... other security headers
  },
  requestValidation: {
    maxBodySize: 10 * 1024 * 1024,
    requireJsonContent: true,
    validateContentType: true
  }
};

CLI Commands

Configuration Management

# Initialize project
npx nestjs-permissions init

# Publish configuration
npx nestjs-permissions publish-config

# Generate migration
npx nestjs-permissions generate-migration

# Validate configuration
npx nestjs-permissions validate-config

Security Management

# Publish security configuration
npx nestjs-permissions publish-security-config

# Update security settings
npx nestjs-permissions update-security-config

# List security templates
npx nestjs-permissions list-security-templates

Documentation

Error Handling

The package includes comprehensive error handling with custom exceptions:

  • PermissionDeniedException
  • InvalidPermissionException
  • RoleNotFoundException
  • ConfigurationException
  • DatabaseException
  • MigrationException
  • CacheException
  • ValidationException

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

For support and questions, please:

Acknowledgments

  • NestJS team for the amazing framework
  • Contributors who helped shape this package
  • Community feedback and support