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

ldap-rest

v0.1.6

Published

Light directory manager

Readme

Ask DeepWiki

LDAP-Rest

Lite LinID directory manager is a lightweight directory manager that provides LDAP integration through a plugin-based architecture. This system enables directory management operations with configurable authentication, extensible functionality through events/hooks, and extensible REST API.

Core plugins also provide plugins that ensure LDAP data consistency.

Key Features

  • Robust Error Handling - Server stays online even when plugins encounter errors
  • Plugin Architecture - Extensible through a powerful plugin system
  • Flexible Authentication - Support for multiple authentication methods
  • REST API - Complete LDAP operations through REST endpoints
  • Event Hooks - Intercept and customize LDAP operations
  • Browser Libraries - Ready-to-use JavaScript components

How it works

All configuration is done via command-line arguments and/or environment variables. Example:

npx ldap-rest --ldap-base 'dc=example,dc=com' \
    --ldap-dn 'cn=admin,dc=example,dc=com' --ldap-pwd admin \
    --ldap-url ldap://localhost \
    --log-level notice \
    --plugin core/ldap/groups --ldap-group-base 'ou=groups,dc=example,dc=com' \
    --plugin core/ldap/externalUsersInGroups

LDAP Failover

Multiple LDAP servers are supported for high availability:

--ldap-url ldap://ldap1.example.com,ldap://ldap2.example.com,ldap://ldap3.example.com

The system automatically tries each URL in order and fails over if a connection fails.

Log Levels

LDAP-Rest uses syslog-style log levels:

  • error - Only errors
  • warn - Warnings and errors
  • notice - Web access logs (recommended for production)
  • info - General info + web logs
  • debug - All debug output

Use --log-level notice for production to see web access logs without general info messages.

Configuration

See Configuration Guide for all CLI options and environment variables.

Documentation

Documentation is organized into 3 categories:

Usage

Installation, configuration and plugin usage.

Plugin Development

Create and extend LDAP-Rest with custom plugins.

Client Application Development

Integrate LDAP-Rest into your web applications.

Copyright and license

Powered by LINAGORA

Copyright 2025-present LINAGORA

Licensed under GNU AGPL-3.0