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
nodemodule:npm initand confirm (or answer) all the questions.
Install the CaseFu CLI module:
npm i casefu-cli --save-devAdd npm scripts. Add the following 2 rows into the
scriptssection of thepackage.jsonfile:"scripts": { "build": "casefu build", "serve": "casefu serve" }Create a file at
fsd/Overview.mdand put the following into it:# My new system
Building FSD
To build output FSD run:
npm run buildThe FSD is then available at build/index.html.
Writing FSD
Open a terminal at the project directory and execute
npm run serveOpen 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 forservecommand) - 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.
3 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
5 years ago
5 years ago
6 years ago
6 years ago
6 years ago
6 years ago
6 years ago
6 years ago
6 years ago
6 years ago
6 years ago
6 years ago
6 years ago