https://github.com/frokk/neutralinojs-snippets
Awesome Snippets For Developing NeutralinoJs Apps Faster
https://github.com/frokk/neutralinojs-snippets
neutralinojs snippets
Last synced: 2 months ago
JSON representation
Awesome Snippets For Developing NeutralinoJs Apps Faster
- Host: GitHub
- URL: https://github.com/frokk/neutralinojs-snippets
- Owner: frokk
- License: mit
- Created: 2022-03-12T01:59:28.000Z (about 3 years ago)
- Default Branch: main
- Last Pushed: 2022-03-22T05:11:16.000Z (about 3 years ago)
- Last Synced: 2024-12-27T21:14:18.053Z (4 months ago)
- Topics: neutralinojs, snippets
- Homepage:
- Size: 22.5 KB
- Stars: 0
- Watchers: 1
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# NeutralinoJs Snippets
Awesome Snippets For Developing NeutralinoJs Apps Faster
---
## Snippets
| Snippet | Renders |
| ------------------- | ------------------------------------------------- |
| `initApp` | Neutralino.init() |
| `openUrl` | Neutralino.os.open("") |
| `exitApp` | Neutralino.app.exit() |
| `setTitle` | Neutralino.app.setTitle("") |
| `getTitle` | Neutralino.app.getTitle() |
| `setData` | Neutralino.storage.setData("key", "value") |
| `getData` | Neutralino.storage.getData("key") |
| `execCommand` | Neutralino.os.execCommand("python --version") |
| `openFileDialog` | Neutralino.os.showOpenDialog("Open A File")... |
| `saveFileDialog` | Neutralino.os.showSaveDialog("Save A File")... |
| `openFolderDialog` | Neutralino.os.showFolderDialog("Open A Folder") |
| `app` | Neutralino.app. |
| `clipboard` | Neutralino.clipboard. |
| `computer` | Neutralino.computer. |
| `debug` | Neutralino.debug. |
| `events` | Neutralino.events. |
| `extensions` | Neutralino.extensions. |
| `filesystem` | Neutralino.filesystem. |
| `os` | Neutralino.os. |
| `storage` | Neutralino.storage. |
| `updater` | Neutralino.updater. |
| `window` | Neutralino.window. |