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

@memberjunction/ng-explorer-modules

v5.24.0

Published

MemberJunction: Consolidated Explorer Modules Bundle

Downloads

2,557

Readme

@memberjunction/ng-explorer-modules

Consolidated module bundle that re-exports all MemberJunction Explorer and Kendo UI modules in a single import. Replaces 20+ individual module imports with one.

Overview

Explorer Modules provides MJExplorerModulesBundle, a convenience NgModule that aggregates all commonly needed MJ Explorer modules and Kendo UI modules. Instead of importing each module individually in your application, import this single bundle to get the complete set of MJ functionality.

graph TD
    BUNDLE["MJExplorerModulesBundle"] --> EC["ExplorerCoreModule"]
    BUNDLE --> CGF["CoreGeneratedFormsModule"]
    BUNDLE --> WI["WorkspaceInitializerModule"]
    BUNDLE --> LD["LinkDirectivesModule"]
    BUNDLE --> CD["ContainerDirectivesModule"]
    BUNDLE --> ES["ExplorerSettingsModule"]
    BUNDLE --> SM["ShellModule"]
    BUNDLE --> KM["MJKendoModule"]

    style BUNDLE fill:#7c5295,stroke:#563a6b,color:#fff
    style EC fill:#2d6a9f,stroke:#1a4971,color:#fff
    style CGF fill:#2d6a9f,stroke:#1a4971,color:#fff
    style WI fill:#2d6a9f,stroke:#1a4971,color:#fff
    style LD fill:#2d6a9f,stroke:#1a4971,color:#fff
    style CD fill:#2d6a9f,stroke:#1a4971,color:#fff
    style ES fill:#2d6a9f,stroke:#1a4971,color:#fff
    style SM fill:#2d6a9f,stroke:#1a4971,color:#fff
    style KM fill:#2d8659,stroke:#1a5c3a,color:#fff

Installation

npm install @memberjunction/ng-explorer-modules

Usage

import { MJExplorerModulesBundle } from '@memberjunction/ng-explorer-modules';

@NgModule({
  imports: [
    BrowserModule,
    MJExplorerModulesBundle,  // Replaces 20+ individual module imports
    // ... your app-specific modules
  ]
})
export class AppModule {}

Included Modules

MemberJunction Modules

| Module | Package | Purpose | |---|---|---| | ExplorerCoreModule | @memberjunction/ng-explorer-core | Core Explorer infrastructure and routing | | ShellModule | @memberjunction/ng-explorer-core | Application shell with header, nav, and tabs | | CoreGeneratedFormsModule | @memberjunction/ng-core-entity-forms | Auto-generated CRUD forms for all entities | | WorkspaceInitializerModule | @memberjunction/ng-workspace-initializer | Workspace initialization service | | LinkDirectivesModule | @memberjunction/ng-link-directives | Email, web, and entity record link directives | | ContainerDirectivesModule | @memberjunction/ng-container-directives | Dynamic component container directives | | ExplorerSettingsModule | @memberjunction/ng-explorer-settings | User settings and preferences |

Kendo UI Modules

All Kendo UI modules are included via MJKendoModule.

Exported API

| Export | Type | Description | |---|---|---| | MJExplorerModulesBundle | NgModule | Consolidated bundle of all Explorer and Kendo modules |

Build

cd packages/Angular/Explorer/explorer-modules && npm run build

Related Packages

License

ISC