Write functional specification in Markdown enhanced with specific keywords and generate a nice FSD in HTML format.
-
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
To build output FSD run:
npm run build
The FSD is then available at build/index.html
.
-
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).
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
A sample FSD demonstrating the use of CaseFu generator is available here.
It has been generated from the following source files.
The complete documentation is available at CaseFu.com.