welsonjs/README.md

117 lines
5.1 KiB
Markdown
Raw Normal View History

2020-06-28 14:19:26 +00:00
# welsonjs
2020-07-21 02:48:03 +00:00
WelsonJS - Build a Windows desktop apps with JavaScript, HTML, and CSS based on WSH/HTA
2020-07-05 02:49:10 +00:00
## Structure
2020-11-04 09:35:57 +00:00
![Structure](app/assets/img/structure.png)
2020-07-07 22:47:31 +00:00
2020-07-21 02:56:37 +00:00
## Specifications
2020-11-14 16:16:14 +00:00
- ES6(ECMAScript 6), ES5(ECMAScript 5), JSON compatibility
2020-11-14 16:11:51 +00:00
- [github:es-shims/es5-shim](https://github.com/es-shims/es5-shim)
- [github:paulmillr/es6-shim](https://github.com/paulmillr/es6-shim)
- [github:bestiejs/json3](https://github.com/bestiejs/json3)
- [cdnjs:babel-core/5.8.34](https://cdnjs.com/libraries/babel-core/5.8.34) - browser-polyfill.js
- HTML5, CSS3 compatibility
- [github:aFarkas/html5shiv](https://github.com/aFarkas/html5shiv)
- [github:parndt/jquery-html5-placeholder-shim](https://github.com/parndt/jquery-html5-placeholder-shim)
- [github:scottjehl/Respond](https://github.com/scottjehl/Respond)
- [github:keithclark/selectivizr](https://github.com/keithclark/selectivizr)
- [github:arv/ExplorerCanvas](https://github.com/arv/ExplorerCanvas)
- [github:etianen/html5media](https://github.com/etianen/html5media)
- [github:Modernizr/Modernizr](https://github.com/Modernizr/Modernizr)
2020-11-21 13:33:07 +00:00
- Default CSS Framework
- [github:jslegers/cascadeframework](https://github.com/jslegers/cascadeframework)
2020-11-14 16:11:51 +00:00
- [module.exports](https://nodejs.org/en/knowledge/getting-started/what-is-require/) compatibility
- [NPM](https://catswords.re.kr/go/npmjs) compatibility
2020-07-21 04:50:54 +00:00
- Ready to use on Windows machine immediately. No require additional softwares installation.
2020-07-21 02:56:37 +00:00
2020-07-07 22:47:31 +00:00
## Included libraries
2020-07-19 06:36:24 +00:00
- 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)
2020-07-21 10:58:07 +00:00
- lib/sendmail (Sendmail interface with 3rdparty)
2020-07-19 06:36:24 +00:00
- lib/shell (Command Prompt interface)
- lib/timer (`setTimeout` implementation for not supported environment)
- lib/powershell (Windows Powershell interface)
2020-07-23 06:08:38 +00:00
- lib/service (Windows Service interface)
2020-11-04 08:52:00 +00:00
- lib/oldbrowser (ES5/ES6, HTML/JS/CSS compatibility)
2020-07-27 02:31:52 +00:00
- lib/uri (URI scheme interface)
- lib/winlibs (Windows DLL(Dynamic-link library) interface)
- lib/autohotkey ([AutoHotKey](https://catswords.re.kr/go/autohotkey) interface)
- lib/autoit3 ([AutoIt3](https://catswords.re.kr/go/autoit3) interface)
2020-07-25 09:15:24 +00:00
- lib/cloudflare ([Cloudflare Argo Tunnel](https://catswords.re.kr/go/argotunnel) interface)
- lib/shadowsocks ([Shadowsocks](https://catswords.re.kr/go/shadowsocks) interface)
2020-07-27 08:14:39 +00:00
- lib/excel (Microsoft Excel interface)
2020-07-29 07:21:39 +00:00
- lib/vbscript (VBScript interface)
- lib/wintap (Windows-TAP interface)
- lib/tun2socks (TUN2SOCKS interface)
- lib/hosts (Hosts file interface)
2020-11-04 08:52:00 +00:00
- lib/gtk (GTK-server GUI interface)
2020-07-05 02:49:32 +00:00
2020-07-21 04:10:36 +00:00
## Make your own `sayhello` example
2020-07-21 04:10:15 +00:00
2020-07-21 04:13:41 +00:00
### 1. Write a file `lib/sayhello-lib.js`
2020-07-21 04:10:15 +00:00
```
2020-07-21 04:14:27 +00:00
exports.VERSIONINFO = "sayhello library (sayhello-lib.js) version 0.1
2020-07-21 04:10:15 +00:00
exports.global = global;
exports.require = global.require;
exports.say = function() {
console.log("hello");
}
```
2020-07-21 04:13:41 +00:00
### 2. Write a file `sayhello.js`
2020-07-21 04:10:15 +00:00
```
2020-07-21 04:10:55 +00:00
var sayhello = require("lib/sayhello-lib");
2020-07-27 02:34:28 +00:00
exports.main = function() {
sayhello.say();
2020-07-21 05:52:42 +00:00
};
2020-07-21 04:10:15 +00:00
```
2020-07-21 04:13:41 +00:00
### 3. Execute file on the command prompt
2020-07-21 04:10:15 +00:00
```
2020-07-21 04:13:41 +00:00
C:\Users\John\Documents\GitHub\welsonjs> cscript app.js sayhello
2020-07-21 04:10:15 +00:00
hello
```
2020-11-09 08:41:26 +00:00
## Make own setup file
- compile `setup.iss` file with [Inno Setup](https://jrsoftware.org/isinfo.php)
2020-11-09 08:40:58 +00:00
## [NEW] Advanced XML Parser
```
var XML = require("lib/xml");
2020-11-09 19:45:54 +00:00
var nodes = XML.load("config.xml").select("/Config/ApiUrl").toArray();
var node = XML.load("config.xml").select("/Config/ApiUrl").first();
var nodeText = XML.load("config.xml").select("/Config/ApiUrl").first().getText();
var nodeAttribute = XML.load("config.xml").select("/Config/ApiUrl").first().getAttribute("name");
2020-11-09 08:40:58 +00:00
```
2020-11-04 09:35:57 +00:00
## Screenshot
2020-11-06 01:21:09 +00:00
![Screenshot 1](app/assets/img/screenshot.png)
## Thanks!
![Thanks 1](app/assets/img/thanks.png)
2020-11-06 01:24:34 +00:00
- https://www.facebook.com/javascript4u/posts/1484014618472735
- https://python5.com/q/xtbsqjxb
2020-11-04 09:35:57 +00:00
2020-07-08 08:36:14 +00:00
## Related projects
2020-11-04 08:46:41 +00:00
- [gnh1201/wsh-js-gtk](https://github.com/gnh1201/wsh-js-gtk) - GTK GUI ported to Windows Scripting Host - Javascript (Microsoft JScript) (wsh-js)
- [gnh1201/wsh-json](https://github.com/gnh1201/wsh-json) - JSON stringify/parse (encode/decode) for Windows Scripting Host
- [redskyit/wsh-appjs](https://github.com/redskyit/wsh-appjs) - require-js and app framework for Windows Scripting Host JavaScript
- [JohnLaTwC's gist](https://gist.github.com/JohnLaTwC/4315bbbd89da0996f5c08c032b391799) - JavaScript RAT
- [JSMan-/JS-Framework](https://github.com/JSMan-/JS-Framework) - No description
- [iconjack/setTimeout-for-windows-script-host](https://github.com/iconjack/setTimeout-for-windows-script-host) - Replacement for the missing setTimeout and clearTimeout function in Windows Script Host
- [johnjohnsp1/WindowsScriptHostExtension](https://github.com/johnjohnsp1/WindowsScriptHostExtension) - Inject DLL Prototype using Microsoft.Windows.ACTCTX COM Object
- [kuntashov/jsunit](https://github.com/kuntashov/jsunit) - JSUnit port for Windows Scripting Host
- [nickdoth/WSHHttpServer](https://github.com/nickdoth/WSHHttpServer) - HTTP server based on Windows Script Host
2020-07-08 08:36:14 +00:00
2020-07-05 02:49:32 +00:00
## Contact me
- gnh1201@gmail.com