Skip to content

Commit 7f0c47a

Browse files
committedNov 9, 2023
first release
0 parents  commit 7f0c47a

File tree

12 files changed

+203
-0
lines changed

12 files changed

+203
-0
lines changed
 

‎LICENSE

+21
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
MIT License
2+
3+
Copyright (c) 2023, Cliff Earl, Antix Development.
4+
5+
Permission is hereby granted, free of charge, to any person obtaining a copy
6+
of this software and associated documentation files (the "Software"), to deal
7+
in the Software without restriction, including without limitation the rights
8+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9+
copies of the Software, and to permit persons to whom the Software is
10+
furnished to do so, subject to the following conditions:
11+
12+
The above copyright notice and this permission notice shall be included in all
13+
copies or substantial portions of the Software.
14+
15+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
21+
SOFTWARE.

‎README.md

+30
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,30 @@
1+
# WebPlus-CLI
2+
3+
A command line interface for creating and packaging [WebPlus](https://github.com/Antix-Development/WebPlus) apps.
4+
5+
## Installation
6+
7+
```
8+
npm install @antix_development/webplus-cli -g
9+
```
10+
11+
## Command line usage
12+
13+
```
14+
webplus <option> file [template]
15+
```
16+
17+
### Command line options
18+
19+
```
20+
-c --create <name> [template] Creates an app using the specified or default template.
21+
-p --package <name> Packages the app with the given name.
22+
-h --help Output usage information. Also lists available templates.
23+
```
24+
25+
## Templates
26+
27+
### default
28+
29+
The utmost minimal WebPlus application. Perfect for the person that wants to do everything themselves.
30+

‎base/WebPlus.exe

605 KB
Binary file not shown.

‎base/app/app.ico

23.5 KB
Binary file not shown.

‎base/app/app.json

+1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
{"HotReload":true,"SaveOnExit":true,"Title":"WebPlus","X":100,"Y":100,"Width":960,"Height":540,"FullScreen":false,"Frameless":false,"Minimized":false,"MinimizeToTray":false}

‎base/app/webplus.js

+8
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.
Binary file not shown.

‎package.json

+21
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
{
2+
"name": "@antix_development/webplus-cli",
3+
"version": "1.0.0",
4+
"description": "web to desktop without the bloat.",
5+
"main": "",
6+
"scripts": {
7+
"test": "echo \"Error: no test specified\" && exit 1"
8+
},
9+
"bin": {
10+
"webplus": ".\\webplus.ps1"
11+
},
12+
"keywords": [
13+
"web-desktop",
14+
"webview2",
15+
"webplus",
16+
"webplus-cli",
17+
"antix"
18+
],
19+
"author": "Cliff Earl, Antix Development",
20+
"license": "MIT"
21+
}

‎templates/default/app/app.css

+18
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,18 @@
1+
* {
2+
font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
3+
box-sizing: border-box;
4+
outline: 0;
5+
}
6+
7+
html {
8+
margin: 0;
9+
padding: 0;
10+
}
11+
12+
body {
13+
background-color: #18191a;
14+
color: #ddd;
15+
width: 100vw;
16+
height: 100vh;
17+
overflow: hidden;
18+
}

‎templates/default/app/app.html

+13
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
<!DOCTYPE html>
2+
<html lang="en">
3+
<head>
4+
<link rel="stylesheet" type="text/css" href="app.css" />
5+
</head>
6+
<body>
7+
8+
<!-- Add your HTML here. -->
9+
10+
<script type="text/javascript" src="webplus.js"></script>
11+
<script type="text/javascript" src="app.js"></script>
12+
</body>
13+
</html>

‎templates/default/app/app.js

+18
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,18 @@
1+
/**
2+
* <ApplicationName>
3+
* <TagLine>
4+
* @copyright <Author>
5+
* @license <License>
6+
* @namespace <Namespace>
7+
*/
8+
9+
'use_strict';
10+
11+
// Declare variables and functions here.
12+
13+
// Fired when the whole page has loaded.
14+
window.onload = () => {
15+
16+
// Initialize your app here.
17+
18+
}

‎webplus.ps1

+73
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,73 @@
1+
# cli for creating and packaging WebPlus (https://github.com/Antix-Development/WebPlus) apps.
2+
3+
$params = -Split $args # NPM concatenates the args, so reget them by splitting.
4+
5+
$command = $params[0]
6+
$project = $params[1]
7+
$template = $params[2]
8+
9+
$basedir = Split-Path $MyInvocation.MyCommand.Definition -Parent # App files contained in this directory.
10+
11+
$currentdir = Get-Location # Apps will be created in this directory.
12+
13+
function Show-Usage {
14+
Write-Host "Usage: webplus <option> file [template]"
15+
Write-Host ""
16+
Write-Host "Options:"
17+
Write-Host " -c --create <name> [template] Creates an app using the specified or default template."
18+
Write-Host " -p --package <name> Packages the app with the given name."
19+
Write-Host " -h --help Output usage information."
20+
Write-Host ""
21+
Write-Host "Templates:"
22+
$directories = Get-ChildItem "$basedir\templates" -Directory
23+
foreach ($directory in $directories) {
24+
Write-Host " " $directory -ForegroundColor DarkBlue
25+
}
26+
}
27+
28+
function Show-Error($e) {
29+
Write-Host $e -ForegroundColor Red
30+
}
31+
32+
switch ($command) {
33+
34+
default {Show-Usage} # No arguments.
35+
36+
{($_ -eq "-h") -or ($_ -eq "-help") -or ($null -eq $_)} {Show-Usage} # Requested help.
37+
38+
{($_ -eq "-c") -or ($_ -eq "-create")} { # Requested create.
39+
40+
if ($null -ne $project) { # Was a project name given?
41+
42+
if (!(Test-Path "$currentdir\$project")) { # Does a project with the given name NOT exist in the current directory?
43+
44+
if ($null -eq $template) {$template = "default"} # Get default template name is nothing was passed.
45+
46+
if ((Test-Path "$basedir\templates\$template")) { # Does a template with the given name exist?
47+
48+
Copy-Item "$basedir\base\" -Destination "$currentdir\$project" -Recurse # Copy base files.
49+
Copy-Item "$basedir\templates\$template\*.*" -Destination "$currentdir\$project" -Recurse -Force # Superimpose template files.
50+
51+
$project = $project.substring(0,1).toupper()+$project.substring(1).tolower() # Capitalize project name.
52+
Rename-Item -Path "$currentdir\$project\WebPlus.exe" -NewName "$project.exe" # Change binary name.
53+
54+
Write-Host "New project ($project) created." -ForegroundColor Green
55+
56+
} else {
57+
Show-Error "Template named $template was not found."
58+
}
59+
60+
} else {
61+
Show-Error "Project named $project already exists."
62+
}
63+
64+
} else {
65+
Show-Error "No project name provided."
66+
}
67+
}
68+
69+
{($_ -eq "-p") -or ($_ -eq "-package")} { # Requested package.
70+
71+
Compress-Archive -Path "$currentdir\$project" -DestinationPath "$project.zip" -Force # Package it.
72+
}
73+
}

0 commit comments

Comments
 (0)
Please sign in to comment.