create-html-webapp
v1.0.3
Published
A tool to create a new HTML app
Downloads
28
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.htmlfiles. - Includes a basic
README.mdfile.
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-webappUsage
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-appThis 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