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

prepl

v1.2.1

Published

PREPL =====

Downloads

27

Readme

PREPL

A simple, event-based, programmatic read-eval-print loop

var repl = require('prepl')();

repl.start();

Use nc to connect:

$ nc -u prepl.sock
> help
    COMMAND     DESCRIPTION
    help        Display this help message
    exit        Disconnect from REPL
> exit
$ 

Configuration

Default configuration:

{
    "name": "prepl",
    "socket": "prepl.sock"
}

Options

API

Prepl

Exposed by require('prepl').

Prepl()

Creates a new Prepl. Works with and without new:

var prepl = require('prepl')();
  // or
var Prepl = require('prepl');
var repl = new Prepl();

Prepl(options:Object)

Optionally, the first argument of the Server constructor may be an options object to be passed to Prepl.configure.

Prepl.configure(options:Object)

  • options Object A hash of options to override defaults

Configure the REPL:

repl.configure({
    address: '0.0.0.0',
    port: 1338,
    socket: undefined
});

Prepl.register(commands:Array)

  • commands Array An array of commands to be registered

Registers the list of commands with the REPL. Command have a name identifier, a message to describe the command in the help menu, and a function to carry out the given command. This function is passed the socket object of the client connection to allow output to the client terminal. names may not exceed 15 characters.


var server = new MyServerApp({foo:'bar'};

repl.register([{
        name: "start",
        help: "Start the application",
        action: function () {
            console.log('cluster started');
        },
    },
    {
        name: "restart",
        help: "Restart the application",
        action: function () {
            console.log('cluster restarted');
        }
    }, 
    {
        name: 'update',
        help: 'Update the server\'s cached memory',
        action: function (socket) {
            server.update(function () {
            socket.write('cache updated');
        }
    }
})
]);

The command(s) will be now available and listed in the help menu.

> help
    COMMAND     DESCRIPTION
    help        Display this help message
    exit        Disconnect from REPL
    start       Start the application
    restart     Restart the application
>

Prepl.unregister(name:String)

  • name String command to be unregistered

Unregister the given action:

repl.unregister('start');

The command will no longer be available or listen in the help menu:

> help
    COMMAND     DESCRIPTION
    help        Display this help message
    exit        Disconnect from REPL
    restart     Restart the application
>

Prepl.start(done:Function)

  • done Function Optional callback to be called when REPL has started

Start the REPL:

repl.start(function () {
    console.log('the REPL server is now ready!');
})

Prepl.stop(done:Function)

  • done Function Optional callback to be called when REPL has stopped

Stop the REPL:

repl.stop(function () {
    console.log('the REPL server has now stopped!');
})

Events

Event: 'starting'

Emitted before the REPL server starts:

repl.on('starting', function onReplStarting () {
    console.log('starting REPL server...');
});

Event: 'stopping'

Emitted before the REPL server stops:

repl.on('stopping', function onReplStopping () {
    console.log('stopping REPL server...');
});

Event: 'stopped'

Emitted once the REPL server has stopped:

repl.on('stopped', function onReplStopped () {
    console.log('REPL server stopped!');
});

Event: 'ready'

Emitted once the REPL server is ready:

repl.on('ready', function onReplReady () {
    console.log('the REPL server is ready!');
});