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

@tecoholic/frontend-plugin-lti-provider

v0.1.2

Published

LTI Provider related UI widgets for Open edX.

Readme

frontend-plugins-lti-provider

LTI Provider widget for displaying and copying LTI provider URLs in Open edX.

Widgets provided by the Plugin

AuthoringUnitPageSidebarWidget

Displays LTI Provider URLs for the unit and its components in the sidebar of the Unit page in Studio.

Screenshots

| Authoring unit page sidebar widget | Dropdown view of available URLs| | --- | --- | | Authoring unit page sidebar widget | Authoring unit page sidebar widget dropdown |

Usage

To use the widgets from this plugin in your instance, create a Tutor plugin with the following contents:

from tutormfe.hooks import PLUGIN_SLOTS
from tutor import hooks

hooks.Filters.ENV_PATCHES.add_item(
    (
        "mfe-dockerfile-post-npm-install-authoring",
        """
# Install the LTI Provider frontend plugin package
RUN npm install @tecoholic/frontend-plugin-lti-provider
""",
    )
)

hooks.Filters.ENV_PATCHES.add_item(
    (
        "mfe-env-config-buildtime-imports",
        """
import { AuthoringUnitPageSidebarWidget } from '@tecoholic/frontend-plugin-lti-provider';
""",
    )
)

PLUGIN_SLOTS.add_items(
    [
        (
            "authoring",
            "org.openedx.frontend.authoring.course_unit_sidebar.v2",
            """
            {
              op: PLUGIN_OPERATIONS.Insert,
              widget: {
                priority: 60,
                id: 'lti-provider-widget',
                type: DIRECT_PLUGIN,
                RenderWidget: AuthoringUnitPageSidebarWidget
              }
            }""",
        ),
    ]
)

Development

  1. In this repo: npm install and npm run watch.

  2. In the host app do npm install ../frontend-plugin-lti-provider (assuming they are present side-by-side in the same parent directory)

  3. In the host app bundler config, ensure symlinked deps resolve from the app:

    • Add symlinks: false to the resolve object in webpack.dev.config.js.
  4. Create a env.config.jsx in the host app with the following contents:

    import { DIRECT_PLUGIN, PLUGIN_OPERATIONS  } from '@openedx/frontend-plugin-framework';
    import { AuthoringUnitPageSidebarWidget } from '@tecoholic/frontend-plugin-lti-provider';
    const config = {
      pluginSlots: {
        'org.openedx.frontend.authoring.course_unit_sidebar.v2': {
          keepDefault: true,
          plugins: [
            {
              op: PLUGIN_OPERATIONS.Insert,
              widget: {
                priority: 60,
                id: 'lti-provider-widget',
                type: DIRECT_PLUGIN,
                RenderWidget: AuthoringUnitPageSidebarWidget
              }
            }
          ]
        }
      }
    }
       
    export default config;

License

AGPL-3.0