casefu-cli v1.0.1
CaseFu CLI module
Write functional specification in Markdown enhanced with specific keywords and generate a nice FSD in HTML format.
Installation
Create a new
node
module:npm init
and confirm (or answer) all the questions.
Install the CaseFu CLI module:
npm i casefu-cli --save-dev
Add npm scripts. Add the following 2 rows into the
scripts
section of thepackage.json
file:"scripts": { "build": "casefu build", "serve": "casefu serve" }
Create a file at
fsd/Overview.md
and put the following into it:# My new system
Building FSD
To build output FSD run:
npm run build
The FSD is then available at build/index.html
.
Writing FSD
Open a terminal at the project directory and execute
npm run serve
Open a browser window and navigate to the URL given at the terminal.
As you write into the files in the
fsd/
directory and save a file, the FSD output in the browser gets automatically refreshed.
There is also a watch
command that only re-builds the output FSD file
on any change of the source files, but does not push the changes to the browser
(the browser page needs to be refreshed manually in this case).
Parameters
The build
, serve
and watch
commands have the following parameters:
-s, --sources <sources>
- Glob pattern to match source files to process. Default:fsd/**/*.md
-t, --target <target>
- Filename of generated HTML file. Default:build/index.html
-p, --port <port>
(only forserve
command) - Port to bind to. Default:8080
-v, --verbose
- List files processed
Sample FSD
A sample FSD demonstrating the use of CaseFu generator is available here.
It has been generated from the following source files.
Documentation
The complete documentation is available at CaseFu.com.
2 years ago
4 years ago
4 years ago
4 years ago
4 years ago
4 years ago
4 years ago
4 years ago
4 years ago
4 years ago
4 years ago
4 years ago
4 years ago
4 years ago
5 years ago
5 years ago
5 years ago
5 years ago
5 years ago
5 years ago
5 years ago
5 years ago
5 years ago
5 years ago
5 years ago