An open API service indexing awesome lists of open source software.

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

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. |