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

replconsole

v0.1.0

Published

REPL console to allows custom commands to be run in a typical Read-Eval-Print-Loop using node

Downloads

5

Readme

replconsole

REPL console allows custom commands/tasks to be run in a typical Read-Eval-Print-Loop on node. This allows you to create your own interactive console for your custom tasks sharing a common context for your application. Example usage may include admin console that allow the user to run different administrative commands to manage your node application.

Custom commands/tasks need to created as JavaScript files, each of which need to have the following functions:

exports.action = function(context, options, arg1, arg2) {
	//contex - shared common context for one replconsole session
	//options - see options below
	//arg1, arg2 - see command line below

	//handle your command/task invocation here
};

exports.description = function() {
	//return a friendly description of your command/task
	return "description";	
};

exports.commandLine = function() {
	//return the command name an required and optional arguments. by default, 'commander' library is used to parse this
	return "command1 <arg1> [arg2]"
};

exports.options = function() {
	//return the options available or your command/task. by default, 'commander' library is used to parse these
	return [
		['-p, --opt1 <val>', 'opt1 and required value'],
		['-q, --opt2 [val]', 'opt2 and optional value']
	];
};

The custom commands/tasks can be loaded from one or more paths. Below are the steps to configure and start replconsole

var replconsole = require('replconsole');

//optional - set the prompt. default is 'repl>'
replconsole.prompt = "myconsole: ";

//optional - set the path(s) to load custom commands/tasks from. default is 'commands'
replconsole.paths = ['mytasks/admin', 'mytasks/db'];

//optional - set commands loader. if not specified the commands_loader module is used - see loader below
//replconsole.commandsLoader = require('./someloader');

//optional - set commands adapter. if not specified the commander_adapter is used - see adapter below
//replconsole.commandsAdapter = require('./someadapter');

//start the REPL console
replconsole.console();

###Loader

A loader is responsible for resolving the configured custom commands/tasks path(s) and load the commands. If not specified, the default loader from 'commands_loader' is used.

If you need to use your own loader, it should have the following functions:

exports.loadCommands = function(paths, outputStream, adapter) {
	//paths - the paths to load the custom commands/tasks from
	//use the output stream to write you messages
	//adapter - commands adapter - see adapter below
}

The loader must emit the following events based on error or success

this.emit('error', 'some error happened');
or	
this.emit('loaded', loadedCommands);

###Adapter

An adapter is a bridge between what is needed by replconsole and your favorite command line parser. If not specified, the default adapter from 'commander_adapter' is used which, in turn, uses 'commander' library.

If you need to use your own adapter, it should have the following functions:

exports.createCommand = function (commandsPath, commandName) {
	// commandsPath - the path to load the command from
	// commandName - the name of command to load
	return createdCommand;	
};

exports.executeCommand = function executeCommand(command, argsv, context) {
	// command - the command the execute
	// argv - array of command line arguments include command name, options and arguments
	// context - the shared context
	// throw an Error object if there are errors executing the command
}

exports.getCommandDetails = function (command) {
	// command - the command for which the details are needed
	// return a simple one line string describing the command, typically name + "\t" + description
};

exports.getCommandHelp = function (command) {
	// command - the command for which the details are needed
	// return the command usage help string, typically name, description, options + details, arguments + details
}

###Development

The replconsole project uses grunt, jshint, mocha, chai, sinon, blanket and travis for code development.

The default grunt tasks run jslint on the src and test folders, and run mocha tests for the specs in the test folder. See Gruntfile.js for more details.

The current code coverage is 100%