frame-cli 0.4.0

CLI for Frame — six intention-verbs over one application: frame new scaffolds it, frame run serves it, frame dev hot-reloads it against the running node, frame test proves it (real browser included), frame check verifies it statically, frame doctor walks the prerequisites
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
//! The verbs themselves: one module per user intention.

mod boot;
mod build;
mod check;
mod dev;
mod dispatch;
mod doctor;
mod host;
mod new;
mod run;
mod test;

pub use dispatch::execute;