Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/andremalveira/create-html5-app
Create a new simple project in HTML5 with one command.
https://github.com/andremalveira/create-html5-app
cha create-html create-html-app create-html5-app html html-cli html5
Last synced: 24 days ago
JSON representation
Create a new simple project in HTML5 with one command.
- Host: GitHub
- URL: https://github.com/andremalveira/create-html5-app
- Owner: andremalveira
- License: mit
- Created: 2022-09-12T20:32:33.000Z (over 2 years ago)
- Default Branch: main
- Last Pushed: 2022-09-19T21:34:46.000Z (over 2 years ago)
- Last Synced: 2024-10-24T22:15:00.280Z (2 months ago)
- Topics: cha, create-html, create-html-app, create-html5-app, html, html-cli, html5
- Language: JavaScript
- Homepage: https://www.npmjs.com/package/create-html5-app
- Size: 454 KB
- Stars: 1
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
#
Create HTML5 App
Create a new simple project in HTML5 with one command.
### Versions:
- v1.0.0 - [Realese]: Create simple HTML5 structure
- v1.1.0 - [Feature]: Added cli options and second html5 example
### Global Install
```
npm i -g create-html5-app
```
```
create-html5-app name
```
```
cd name
```
OR:### Using npx
```
npx create-html5-app name
```
```
cd name
```
> ⚠️ There is no command to start the project as it is a simple example in html5.
### Commands
| Command | Alias | Description |
| ------------------ | ------ | --------------------- |
| create-html5-app | cha | main command |### Options
| Options | Alias | Description |
| ------------------ | ------ | --------------------- |
| --example name | --e | create app based on an [example](https://github.com/andremalveira/create-html5-app/tree/main/examples) |
| --page name | --p | create new page in html |
| --git | --g | Initialize git|
#### How to use (command example):
```js
// Creating a app
create-html5-app app-name// Criating a app with example
create-html5-app app-name --example with-scss// Creating a html page
create-html5-app --page about
// or --page pages/about// [create-html5-app] has an alias called [cha], you can use it like this:
// cha app-name
```> use npx before create-html5-app if you haven't installed the cli globally
### License
Create HTML5 App is licensed under the [MIT License](https://github.com/andremalveira/create-html5-app/blob/main/packages/create-html5-app/LICENSE).