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

srinstallers

v1.2.7

Published

// -- Create a webpart using the following command in your solution folder and follow the instructions -- //

Readme

// -- Create a webpart using the following command in your solution folder and follow the instructions -- //

yo @microsoft/sharepoint

// -- run the following in a node command terminal -- //

npm i srinstallers @pnp/sp @pnp/graph @pnp/spfx-property-controls sp-pnp-js

// -- in your webpart file add the required imports for your webpart from the approved SR packages below -- // // --in order to use pnp you will need to add the following to the top of the webpart inside the exported default class

public onInit(): Promise {

return super.onInit().then(_ => {
  sp.setup({
    spfxContext: this.context
  });
});

} -- //

// -- Standard imports -- //

import {AppInsights} from "applicationinsights-js"; import * as $ from "jquery"; import UIkit from "uikit"; require("uikit/dist/css/uikit.min.css"); require("uikit/dist/js/uikit.min.js"); import * as moment from "moment";

// -- PNP imports -- //

import "@pnp/sp/webs"; import "@pnp/sp/lists"; import "@pnp/sp/items";

// -- Calendar imports -- //

import { Calendar } from '@fullcalendar/core'; import timeGridPlugin from '@fullcalendar/timegrid'; import listPlugin from '@fullcalendar/list'; import dayGridPlugin from '@fullcalendar/daygrid'; import interactionPlugin from '@fullcalendar/interaction';

// -- Property Pane imports -- //

import { PropertyFieldCodeEditor, PropertyFieldCodeEditorLanguages } from '@pnp/spfx-property-controls/lib/PropertyFieldCodeEditor';

import { PropertyFieldCollectionData, CustomCollectionFieldType } from '@pnp/spfx-property-controls/lib/PropertyFieldCollectionData';

import { PropertyFieldColorPicker, PropertyFieldColorPickerStyle } from '@pnp/spfx-property-controls/lib/PropertyFieldColorPicker';

import { PropertyFieldDateTimePicker, DateConvention, TimeConvention } from '@pnp/spfx-property-controls/lib/PropertyFieldDateTimePicker';

import { PropertyFieldEnterpriseTermPicker } from '@pnp/spfx-property-controls/lib/PropertyFieldEnterpriseTermPicker';

import { PropertyFieldFilePicker, IPropertyFieldFilePickerProps, IFilePickerResult } from "@pnp/spfx-property-controls/lib/PropertyFieldFilePicker";

import { PropertyFieldIconPicker } from '@pnp/spfx-property-controls/lib/PropertyFieldIconPicker';

import { PropertyFieldListPicker, PropertyFieldListPickerOrderBy } from '@pnp/spfx-property-controls/lib/PropertyFieldListPicker';

import { PropertyFieldMessage} from '@pnp/spfx-property-controls/lib/PropertyFieldMessage';

import { PropertyFieldMultiSelect } from '@pnp/spfx-property-controls/lib/PropertyFieldMultiSelect';

import { PropertyFieldNumber } from '@pnp/spfx-property-controls/lib/PropertyFieldNumber';

import { PropertyFieldOrder } from '@pnp/spfx-property-controls/lib/PropertyFieldOrder';

import { PropertyFieldPassword } from '@pnp/spfx-property-controls/lib/PropertyFieldPassword';

import { PropertyFieldPeoplePicker, PrincipalType } from '@pnp/spfx-property-controls/lib/PropertyFieldPeoplePicker';

import { PropertyFieldSearch } from '@pnp/spfx-property-controls/lib/PropertyFieldSearch';

import { PropertyFieldSitePicker } from '@pnp/spfx-property-controls/lib/PropertyFieldSitePicker';

import { PropertyFieldSpinButton } from '@pnp/spfx-property-controls/lib/PropertyFieldSpinButton';

import { PropertyFieldSpinner} from '@pnp/spfx-property-controls/lib/PropertyFieldSpinner';

import { PropertyFieldSwatchColorPicker, PropertyFieldSwatchColorPickerStyle } from '@pnp/spfx-property-controls/lib/PropertyFieldSwatchColorPicker';

import { PropertyFieldTermPicker } from '@pnp/spfx-property-controls/lib/PropertyFieldTermPicker';

import { PropertyFieldViewPicker, PropertyFieldViewPickerOrderBy } from '@pnp/spfx-property-controls/lib/PropertyFieldViewPicker';

import { PropertyFieldColumnPicker, PropertyFieldColumnPickerOrderBy } from '@pnp/spfx-property-controls/lib/PropertyFieldColumnPicker';

import { PropertyPaneMarkdownContent } from '@pnp/spfx-property-controls/lib/PropertyPaneMarkdownContent';

import { PropertyPanePropertyEditor } from '@pnp/spfx-property-controls/lib/PropertyPanePropertyEditor';

import { PropertyPaneWebPartInformation } from '@pnp/spfx-property-controls/lib/PropertyPaneWebPartInformation';

// -- Graph imports -- //

import { graph } from "@pnp/graph"; import "@pnp/graph/users"; import "@pnp/graph/search";

// -- Editor imports -- //

import EditorJS from "@editorjs/editorjs"; import Header from "@editorjs/header"; import Paragraph from "@editorjs/paragraph"; import LinkTool from "@editorjs/link"; import Table from "@editorjs/table"; import List from "@editorjs/list"; import Embed from "@editorjs/embed"; import Warning from "@editorjs/warning"; import Alert from 'editorjs-alert'; import Checklist from "@editorjs/checklist"; import Quote from "@editorjs/quote"; import Delimiter from "@editorjs/delimiter"; import ImageTool from "@editorjs/image"; import DragDrop from 'editorjs-drag-drop'; import SocialPost from 'editorjs-social-post-plugin'; import ChangeCase from 'editorjs-change-case'; import Underline from '@editorjs/underline';

// -- Amcharts imports -- //

import * as am4core from "@amcharts/amcharts4/core"; import * as am4charts from "@amcharts/amcharts4/charts"; import am4themes_animated from "@amcharts/amcharts4/themes/animated"; import * as am4plugins_wordCloud from "@amcharts/amcharts4/plugins/wordCloud";