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

wlpn

v2.2.11

Published

## WebSphere Liberty Profile for Node.js

Downloads

3

Readme

wlpn

WebSphere Liberty Profile for Node.js

The core CLI package for running wlpn plugin commands.

Overview

The wlpn package provides a command-line tool for performing commands on the WLPN runtime for both server operations and collective operations. Additionally, the wlpn module supports a plugin interface that allows arbitrary extension of its capabilities, as well as mounting those extensions (and help dialog) onto the CLI commands list.

Usage

Versions

To get the wlpn version, run wlpn -v or wlpn --version. This will return the wlpn version as well as the API Connect release it's associated with.

To get the extended version list of wlpn and any installed plugins, run wlpn --ext-version. This may be useful if required to reproduce and debug issues with certain plugin versions, or interoperation between plugins.

$ wlpn --ext-version
wlpn: v2.2.5 (API Connect: v5.0.6.2)
 plugins 3.3.7
 wlpn-cli-collective 2.4.0
 wlpn-cli-server 2.7.8

Note: There is no single-letter flag for the extended version printout.

Help

To print out the help for the top-level wlpn module, run wlpn -h or wlpn --help.

To print out help for a plugin, run wlpn <plugin> -h, where <plugin> is the command name of the plugin. For example, if the wlpn-magic-log-router (not a real plugin) was installed, but the command name for using it was magicRouter, then you would run wlpn magicRouter -h or wlpn magicRouter:help

Plugins

List

To list the plugins available on wlpn, run wlpn plugins:list. Running wlpn plugins without the specified sub-command will also list your plugins. Example:

$ wlpn plugins:list
plugins 3.3.7
wlpn-cli-collective 2.4.0
wlpn-cli-server 2.7.8

Install

To install a plugin, run wlpn plugins:install <target> where <target> can be:

  • A gzipped tarball (.tgz or .tar.gz)
  • A URL to an npm package
  • The name of a package available on the currently configured npm repository (by default, this will be http://registry.npmjs.org)

The plugin must be a valid plugin, which means it must have the apic-toolkit-plugin phrase in the package.json under keywords, and must provide one or more "components" or "topics". The installation process will attempt to validate the plugin.

Uninstall

To uninstall a plugin, run wlpn plugins:uninstall <name>, where <name> is the name of the plugin.

Server

As a default, the wlpn-cli-server plugin is included when installing the wlpn module. It provides the facilities required to unpack Node.js applications you intend to deploy, as well as runtime management functions like run, start, stop and status.

Collective

The wlpn module also includes the wlpn-cli-collective plugin, which handles Liberty Collective operations for host machines and application instances.