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 🙏

© 2024 – Pkg Stats / Ryan Hefner

@pepperi-addons/create

v0.0.96

Published

a script that downloads the sample repo and installs locally

Downloads

22

Readme

@pepperi-addons Typescript Template

A template for creating a pepperi addon with an angular app for the client-side & a typescript nodejs app for the server-side

  • debugging server side right in vscode
  • a build script for creating all compiled files for addon
  • a publish script for uploading the addon

Installation


System Requirements

node --version > 12.0.0

npm --version > 6.0.0

Install by running

npm init @pepperi-addons

or

npx @pepperi-addons/create

Project structure


The following is an overview of the project structure. The node_modules folder is in use by npm

Folders

|Folder | Description | | ---: | :--- | | .vscode | vscode tasks & launch | | client-side | an angular app that is the UI of the plugin | | server-side | a typescripe node.js app for writing an addon API | | publish | all files to be published to the addon are created in this folder | | publish/api | the api endpoints created | | publish/assets | put any assets you might need for the front end (eg. translation files, images) |

Additional files

addon.config.json contains information for publishing the addon

var_sk put the var API secret key here, for publishing the addon. Make sure not to commit this file. How to get the secret you ask? It's a secret!

README.md This file. You can file info here regarding your project.

Debugging


To debug your addon in Visual Studio Code, press F5 or Run->Start Debugging. You can then checkout your API at http://localhost:4400/api/foo. Be sure to supply a JWT for it to work.

To view the addon UI, open https://app.pepperi.com/settings/your-app-uuid/editor?dev=true

If you haven't created the addon yet you can use our placeholder plugin: https://app.sandbox.pepperi.com/settings/a8f4698f-eb75-4a75-bdf6-1524eb9f6baf/editor?dev=true

Open the browser inspector to make sure that the editor file is served locally

Publishing


When you are ready to publish your addon. Update the addon.config.json file, with your addons info (AddonUUID etc.). Change the AddonVersion to 1.0.0. The publish script will automatically bump the version patch number every time you publish the app. (eg. the next version will be 1.0.1).

To publish your addon you will need the secret-key. It is unique per addon. Put it in the var_sk file.

Then run:

npm run publish-addon

Addon API


An addon API is a javascript file that exports functions that can be called through the api. For example in server-side/api.ts we export a function foo like so:

export async function foo(client: Client, request: Request) {
    const service = new MyService(client)
    const res = await service.getAddons()
    return res
};

This function will run for the following API call: https://papi.pepperi.com/v1.0/addons/api/a8f4698f-eb75-4a75-bdf6-1524eb9f6baf/api/foo

You can acess the API call method, query and body in request.method request.query and request.body respectfully.

You can add as many files as you like in both typescript & javascript. These can require other files & packags. The build script will create a output file for every endpoint specified in: addon.config.json Endpoints field.

To debug these api's locally, just press F5, and call: http://localhost:4400/api/foo

Addon Editor


The editor is the addon's UI and is developed as an Angular app.

Contributions


This project is far from being complete, and is missing in tooling, documentation, examples and more. We are also interested in creating other templates like a html-css-js front-end with a vanilla node.js backend. You are welcome to contribute at: https://github.com/Pepperi-Addons/create-addon

Please create your on addon in a repo under: https://github.com/Pepperi-Addons so that we can all learn from each other