Siteit allows users to convert text files into .html pages. Presently, Siteit only supports input files with .txt format.
- Use the command
git clonetoclonethe repo to your local machine cdinto the cloned directory, and runnpm installto install all the dependencies- Run
npm linkto run Siteit locally on your machine
| Command | Option/Flag | Additional Argument(s) | Description |
|---|---|---|---|
| siteit | -v or --version | n/a | Displays tool name and version information |
| siteit | -h or --help | n/a | Display usage manual |
| siteit | -i or --input | ./filename.txt | Converts the content of the file supplied as additional argument into an .html document. To locate the generated file, cd into application's dist directory |
| siteit | -i or --input | ./directory | Yet to be implemented |
Usage format: siteit [option/flag] [additional arguments]
If you are on Windows and are unable to run the tool using the aforementioned usage format, follow these steps:
- Use
nodecommand prefix to run the app as follows:- node ./index.js -h
- Using PowerShell in Admin Mode, run the following command to bypass PowerShell's Execution Policy
- For temporary bypass run:
Set-ExecutionPolicy -Scope Process -ExecutionPolicy Bypass - For permanent bypass (not recommended) run:
Set-ExecutionPolicy -Scope LocalMachine -ExecutionPolicy Unrestricted
- For temporary bypass run: