Final
A set of tools for writing JavaScript code once that runs on the command line, browser, and more.
Project Status
Final is in early (pre-1.0) development. It is usable, but its API may change frequently until it reaches 1.0. Additionally, several core features (and runners) have not been implemented yet.
Examples
The examples below can be run in a Node.js script or shell.
Getting Started
First, create an instance of Command
with a function implementing the Command
's core. Skip to the Usage section for more information about how to write Command
s.
var adder = { var first = var second = return first + second}
This Command
exposes a run()
method which wraps the given core with some extra type conversion and validation. This is the recommended way of running Command
s. Note that your core function should treat all options as String
s, since all inputs and outputs are converted to and from String
s by the run()
method.
var result = adder // this returns a Stringconsole
API Runner
Final can generate callbacks for Node's http.Server
class, allowing you to wrap Command
s in web APIs. You can also embed Command
s in larger Node web apps.
adder
Here, Final starts a web API at localhost:3000
that wraps your Command
. You can call it with HTTP requests like GET localhost:3000?first=1&second=2
, and you will get a plain text response with the result.
CLI Runner
Final can create command line interfaces around your Command
.
adder
Final will read arguments from the shell command running this JavaScript code, and
then it will immediately run the Command
with the given options and print the
result to STDOUT. For example, try putting this in add.js
and running
node add --first 1 --second 2
in the same directory.
Installation
- Install Node.js (version 4 or higher)
npm install --save final
var final = require ('final')
License
ISC (it's similar to MIT, but simpler)