Skip to content

godxkey/Cybex-Web2exe

 
 

Repository files navigation

version license website size

How to use cybex-web2exe

make a settings.json file in the root of the app write { "app" : "HTML-File-Location" } and

Parameters in Settings.json

For detailed documentation, visit https://cybex-developers.github.io/Cybex_web2exe

Creating a new project

execute command cwe --create

Steps to test/run your app:

execute command cwe --run

Steps to build executable

execute command cwe --build

Demo settings.json

{
    "name": "Cybex Web2exe",
    "author": "Cybex Studios",
    "description": "A full fledged node module to make windows apps with web technologies like HTML, CSS, Javascript etc.",
    "version": "2022.6.1",
    "copyright": "Copyright (c) Cybex Studios 2023",
    "app": "./public/index.html",
    "start_maximized": false,
    "width": "600",
    "height": "440",
    "icon": "./favicon.ico",
    "keys":{
        "zoom": false,
        "reload": true,
        "exit": false,
        "find": true,
        "print": false,
        "fullscreen": false
    },
    "devtools": true,
    "resize": true
}

API :

cwe.setSetting() - used to set a setting in the system so that it will be presreved when app restared
usage : cwe.setSetting("language","en-in")

cwe.getSetting() - returns a setting which you have set
usage : cwe.getSetting("language") //will return en-in in the previous case

cwe.getAllSettings() - returns all the settings which you have set
usage : cwe.getAllSettings()

cwe.removeSetting() - remove a setting which you have set
usage : cwe.removeSetting("language") //removes language setting

cwe.removeAllSettings() - removes all the settings which you have set
usage : cwe.removeAllSettings()

What's new :

  1. This project has been deprecated

What will be new:

There will be no new features as the product is already deprecated

About

No description, website, or topics provided.

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • JavaScript 100.0%