1.0.9 • Published 4 years ago
ohtml v1.0.9
O HTML (ohtml)
Discription
Instalation
- To install first you need nodejs installed. click here to downloat node
- Type following command to install
npm i -g ohtml- Or run npx command directly
npx ohtml@latest < arguments,>usage
- Got to any directory that includes a html file.
- If the directory have only one html file , Simply run "
ohtml"- If you have multiple files, Then specify the filename. Like "
ohtml <file_name.html>"- If the default PORT is not available, Specify the port like "
ohtml index.html --port 5000"node: If you'r using editer like VScode and wanna use integrated terminal, Then follow the steps.
- Run "
npm init" to create npm project.- In npm json file add command to a script, For Example, In Package File:
In here I added a script "{ "name": "my-package", "version": "1.0.0", "description": "", "main": "index.js", "dependencies": {} "devDependencies": {}, "scripts": { "run-ohtml": "ohtml index.html" }, "author": "-Author-name-" }run-ohtml".- Run that script using "
npm run <script-name>", In previous example \ isrun-ohtml.Argument List
--helpoptional### To Show help ``` ohtml --help ```--portoptionalTo specify the PORT
ohtml --port 3000default:: 4040
--pathoptionalTo specify the path to watch
ohtml --path "E://my_app/"default:: '.' (current path)
--fileoptionalTo specify the file name
ohtml --file mysite.htmldefault:: <first file in the path>
Example
ohtml index.htmlohtml --path C://Github/myApp --file example.html --port 3000