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

@kwsites/commands

v1.0.3

Published

Command line arguments reader

Downloads

10

Readme

Overview

Simplify access to command line arguments in node apps, and query string or hash parsing in the browser environment.

Installation

If using in node, installation via npm is as simple as npm install @kwsites/commands.

API

Commands.get( key [, defaultValue] ) get the value of a named argument, or when that argument wasn't supplied get the supplied default value.

Commands.exists( key ) get a boolean flag for whether a named argument was supplied

Usage - node.js

Include Commands with require, then read command line arguments in camel case:

const commands = require('@kwsites/commands');
console.log( Commands.get('someArg') );  // outputs "foo"
console.log( Commands.get('someUnknownArg', 'defaultValue') );  // outputs "defaultValue"
console.log( Commands.exists('someUnknownArg') );  // outputs false
console.log( Commands.get('bar') );  // outputs true
console.log( Commands.get('baz') );   // outputs false
> node script.js -some-arg "foo" --bar --no-baz

Command line arguments can be sent either with a hyphen prefix for naming an argument where the next argument is the value of that argument (in this case "-some-arg" is converted to "someArg" and has the value "foo"). A double hyphen prefix is used to denote a flag, so here bar is true and baz is false because "--no-" is used as flag negation.

Usage - browser

Including Commands as a script tag then makes available a global variable called "commands" that has the same API as in node however the data source is the query string and hash segments of the URL. Unlike in the node environment, evaluation of the arguments takes place every time they are queried to allow for changes in the hash of the page.

console.log( commands.get('someArg') );  // outputs "foo"
console.log( commands.get('someUnknownArg', 'defaultValue') );  // outputs "defaultValue"
console.log( commands.exists('someUnknownArg') );  // outputs false
console.log( commands.get('bar') );  // outputs true
console.log( commands.get('baz') );   // outputs false

location.href = 'somepage.html?someArg=foo&--bar&#--no-baz'

Here both the query string and hash are being used although it can be either or neither, if there are entities in the URL that are being used as options (ie: prefixed with a double hyphen) then they will still need a trailing ampersand to make the URL conform to the W3C spec.