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

@project-octant/generator-octant-plugin

v0.22.0

Published

A Yeoman generator for scaffolding an Octant Plugin in Typescript.

Downloads

7

Readme

@project-octant/generator-octant-plugin

A Yeoman generator for generating a Octant plugin using TypeScript and Webpack. Writing plugins in JavaScript is supported in Octant starting with version 0.14

Features

  1. Scaffold an Octant plugin written in TypeScript
  2. Builds with Webpack
    • TypeScript linting
    • Minification
    • Inlining of import/require
    • Transpiles to ES5 to ensure compatability with the Octant JavaScript runtime.
  3. Controlled with simple NPM commands
    • plugin:watch, plugin:dev, plugin:prod, plugin:install

Installation

Prerequisites

  1. Install Node.js
  1. Install Yeoman npm install -g yo

Installing the Generator

npm install -g @project-octant/generator-octant-plugin

Using the Generator

Start the Octant plugin generator.

mkdir your-plugin && cd your-plugin
yo @project-octant/octant-plugin

You will be prompted for the following information

  • Project name
  • Project description
  • Octant plugin path (used by plugin:watch, plugin:install)

Working with the Generated Files

Tryout the demo plugin using the install command

npm run plugin:install

You can have your changes get compiled and installed in real-time using the watch command. After you start the watch you can open the plugin TypeScript file in your editor and as you save changes you'll see them reflected in Octant.

npm run plugin:watch

Generated File Structure

    .
    |-- node_modules
    |-- package.json
    |-- src
        |-- <plugin-name>.ts
        | -- content.ts
        | -- routes.ts
    |-- tsconfig.json
    |-- webpack.config.js

Generated Files

node_modules

The folder contains all of the required dependencies for the project. You should not edit this file directly.

package.json

The NPM package file for the project containing the project's name, version, and dependencies. Update this file to add or change dependencies.

src

The directory that will contain all of the TypeScript source files for your plugin. Any new code meant to be distributed with the plugin should be placed in here.

src/<plugin-name>.ts

An example TypeScript class that implements the plugin interface. This example plugin adds Config, Status, and Items and a Tab to v1/Pods. It also acts as a module and implements a custom navigation menu and shows how to use the contentResponseFromRouter helper function to build handlers with route matching.

src/content.ts

Implements content handlers for use with module plugins and our routes helper.

src/routes.ts

Implements route matching and uses the content handlers defined in content.ts

tsconfig.json

The configuration for the TypeScript compiler. The settings should not be changed.

webpack.config.js

The configuration for the webpack build. The settings should not be changed.

NPM Scripts

npm run plugin:dev

Transpiles the plugin and generates a single unminified JavaScript file in dist/.

npm run plugin:prod

Transpiles the plugin and generates a single minified JavaScript file in dist/.

npm run plugin:watch

Transpiles the plugin and generates a single unminified JavaScript file and copies it to <octant plugin path>. After which it will watch for file changes and re-run the transpile and webpack process automatically.

npm run plugin:install

Transpiles the plugin and generates a single minified JavaScript file in <octant plugin path>.

Development Workflow

Setting Up The Project

  1. Initialize a new, empty Git repository on Github.
  2. Clone the new repository to your development environment.
  3. Use "yo @project-octant/octant-plugin" to generate the project.

Making Changes

I would recommend having a terminal open running "npm run plugin:watch"

You are now free to do whatever you want with the code base. Install some additional NPM libraries or types. Edit the <plugin-name>.ts file with something meaningful.