Socket
Book a DemoInstallSign in
Socket

cybex-web2exe

Package Overview
Dependencies
Maintainers
1
Versions
53
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

cybex-web2exe

A full fledged node module to make windows apps with web technologies like HTML,CSS,Javascript etc.

latest
Source
npmnpm
Version
2022.6.1
Version published
Weekly downloads
4
Maintainers
1
Weekly downloads
 
Created
Source

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 :

  • This project has been deprecated

What will be new:

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

FAQs

Package last updated on 02 Apr 2023

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts