Convert your favorite pages into portable windows executables! With node, electronjs and electron-builder
npm install webtodesktopJS
const { webtodesktop } = require("webtodesktop");
webtodesktop("https://www.npmjs.com/", "", "")
`
Windows
| Parameter | Type | Description |
| :-------- | :------- | :------ |
| useUrl | string | Your favorite url |
| outputDir | string | Generation folder |
| isDev | boolean | Disable F12 or devTools (default is disabled: false). |
| myIcon | string | Use your favorite icon. |
Linux (Beta)
| Parameter | Type | Description |
| :-------- | :------- | :---------- |
| useUrl | string | Your favorite url |
| outputDir | string | Generation folder |
| isDev | boolean | Disable F12 or devTools (default is disabled: false). |
`JS
const { webtodesktopLinux } = require("webtodesktop");
webtodesktopLinux("", "", "","")
`
Mac (Beta) (DMG)
| Parameter | Type | Description |
| :-------- | :------- | :------------------------- |
| useUrl | string | Your favorite url |
| outputDir | string | Generation folder |
| isDev | boolean | Disable F12 or devTools (default is disabled: false). |
`JS
const { webtodesktopMac } = require("webtodesktop");
webtodesktopMac("", "", "")
``