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

@quickql/server

v1.0.5

Published

Enterprise-grade QuickQL server engine with advanced security and performance.

Readme

@quickql/server

A high-performance, schema-driven API engine with native relational mapping and enterprise security by Udinmo Inc.

Features

  • 🚀 Ultra-Fast Relations: Native $O(N+M)$ relation resolver that eliminates the N+1 problem without DataLoaders.
  • 🔐 Enterprise Security: Integrated RBAC (Role-Based Access Control), depth limiting, and complexity scoring.
  • 🛠️ Zero-Boilerplate: Fully automated resolver mapping for Prisma and other standard ORMs.
  • 📦 Multi-Strategy Auth: Built-in hooks for JWT, API Keys, and custom authentication.
  • 🎨 Supreme Console: A premium browser IDE for exploring your schema, traversing data relations, and testing queries.
  • ⚡ Atomic Transactions: Native support for batch mutation transactions at the engine level.

Getting Started

Installation

npm install @quickql/server

Basic Server Initialization

import { createServer } from '@quickql/server';
import { PrismaClient } from '@prisma/client';

const orm = new PrismaClient();

const server = createServer({
  orm,
  schema: {
    users: {
      model: 'User',
      fields: ['id', 'email', 'name'],
      relations: {
        posts: { type: 'many', model: 'Post', foreignKey: 'userId' }
      }
    }
  },
  auth: {
    secret: 'udinmo-secret-123'
  },
  rbac: {
    roles: {
      'admin': { can: ['*'], write: ['*'] },
      'user': { can: ['users', 'posts'] }
    }
  }
});

// Use it with any HTTP framework (e.g. Express)
app.post('/quickql', async (req, res) => {
  const result = await server.handleRequest(req.body, { ip: req.ip });
  res.json(result);
});

Advanced Customization

Directives

Extend the query language with custom @tags:

const server = createServer({
  directives: [
    {
      name: 'upper',
      handler: (results) => results.map(row => ({ ...row, name: row.name?.toUpperCase() }))
    }
  ]
});

Lifecycle Hooks (Plugins)

Intercept any part of the execution flow:

server.use({
  name: 'audit-plugin',
  onMutation: async (m, ctx) => {
    console.log(`[AUDIT] Created ${m.collection} by ${ctx.user.id}`);
  }
});

License

(c) 2024-2026 Udinmo Inc. All rights reserved. MIT Licensed — see LICENSE for details. Author: Udinmo Inc.