create-html-webapp
v1.0.3
Published
A tool to create a new HTML app
Downloads
3
Readme
Create HTML App
create-html-webapp
is a simple Node.js CLI tool to scaffold a basic HTML app structure.
Features
- Creates a project directory with the specified name.
- Generates
css
,js
, andindex.html
files. - Includes a basic
README.md
file.
Installation
To use the package without installing globally, use:
npx create-html-webapp <app-name>
To install the package globally, use:
npm install -g create-html-webapp
Usage
To create a new HTML app, run:
create-html-webapp <app-name>
Replace <app-name>
with the desired name of your application.
Example
create-html-webapp my-html-app
This will generate the following structure:
my-app/
├── css/
│ └── style.css
│ └── index.css
├── js/
│ └── script.js
├── assets/
│ └── fav.svg
├── index.html
├── manifest.json
├── .gitignore
└── README.md