0.0.1-b1 • Published 10 years ago

awrepl v0.0.1-b1

Weekly downloads
-
License
-
Repository
-
Last release
10 years ago

AwREPL

Node's REPL, only more awesome.

AwREPL is a Read-Eval-Print-Loop based on the REPL bundled with Node. It's currently designed as an executable for the command line, and provides additional commands and other niceties to compliment the original REPL.

Features

Commands

module

Shortcut to require().

Examples:

> var blessed = require("blessed");
undefined
> typeof blessed
'function'
> var Message = require("irc-message");
undefined
> typeof Message
'function'

becomes

> .module blessed
> typeof blessed
'function'
> .module irc-message Message
> typeof Message
'function'
0.0.1-b1

10 years ago

0.0.1

10 years ago