WelsonJS - Build a Windows app on the Windows built-in JavaScript engine
Go to file
2020-07-31 15:50:24 +09:00
app fix 2020-07-31 15:50:24 +09:00
bin update unlockfile processes 2020-07-19 06:27:46 +09:00
lib Update VUE version 2020-07-31 12:05:27 +09:00
screenshots Updated screenshots 2020-07-03 19:58:24 +09:00
test fix indentation 2020-07-27 18:07:33 +09:00
.gitignore Update .gitignore 2020-07-23 20:01:54 +09:00
app.hta fix 2020-07-31 15:50:24 +09:00
app.js Update app,js lib/jsunit.js, lib/winlibs.js 2020-07-27 14:56:43 +09:00
app.nostd.hta Update app.nostd.hta 2020-07-27 11:46:19 +09:00
bootstrap.js fix 2020-07-27 11:31:52 +09:00
config.js Merge branch 'master' of https://github.com/gnh1201/welsonjs 2020-07-31 10:29:13 +09:00
LICENSE Create LICENSE 2020-07-09 17:44:23 +09:00
package-lock.json Update package.json and relative files 2020-07-20 07:19:19 +09:00
package.json Update test-driven components 2020-07-27 15:41:55 +09:00
README.md Update README.md 2020-07-29 16:21:39 +09:00
README.welsonjs.md Update excel.js and relative files 2020-07-27 17:14:39 +09:00
setup.iss Update setup.iss 2020-07-21 18:16:31 +09:00
ssloader.js Update ssloader.js 2020-07-30 11:55:56 +09:00
start.bat Update bootstrap,js and relative files 2020-07-21 16:03:36 +09:00
testloader.js Update test-driven components 2020-07-27 15:41:55 +09:00
uriloader.js fix 2020-07-27 11:31:52 +09:00
webloader.js fix 2020-07-31 15:50:24 +09:00

welsonjs

WelsonJS - Build a Windows desktop apps with JavaScript, HTML, and CSS based on WSH/HTA

Structure

Structure of WelsonJS

Specifications

Included libraries

  • lib/std (Standard library)
  • lib/system (System library)
  • lib/base64 (BASE64 Encode and Decode)
  • lib/db (Database interface)
  • lib/file (File I/O interface)
  • lib/http (HTTP interface)
  • lib/json (JSON Encode and Decode)
  • lib/registry (Windows Registry interface)
  • lib/security (Security Policy interface)
  • lib/sendmail (Sendmail interface with 3rdparty)
  • lib/shell (Command Prompt interface)
  • lib/timer (setTimeout implementation for not supported environment)
  • lib/powershell (Windows Powershell interface)
  • lib/service (Windows Service interface)
  • lib/oldbrowser (HTML/JS/CSS interface)
  • lib/uri (URI scheme interface)
  • lib/winlibs (Windows DLL(Dynamic-link library) interface)
  • lib/autohotkey (AutoHotKey interface)
  • lib/autoit3 (AutoIt3 interface)
  • lib/cloudflare (Cloudflare Argo Tunnel interface)
  • lib/shadowsocks (Shadowsocks interface)
  • lib/excel (Microsoft Excel interface)
  • lib/vbscript (VBScript interface)
  • lib/wintap (Windows-TAP interface)
  • lib/tun2socks (TUN2SOCKS interface)
  • lib/hosts (Hosts file interface)

Make your own sayhello example

1. Write a file lib/sayhello-lib.js

exports.VERSIONINFO = "sayhello library (sayhello-lib.js) version 0.1
exports.global = global;
exports.require = global.require;

exports.say = function() {
    console.log("hello");
}

2. Write a file sayhello.js

var sayhello = require("lib/sayhello-lib");
exports.main = function() {
    sayhello.say();
};

3. Execute file on the command prompt

C:\Users\John\Documents\GitHub\welsonjs> cscript app.js sayhello
hello

Contact me