I don't want a fullscreen application, but I would like to start a Node-Webkit application maximized. Can this be done? I am guessing its something to do with package.json, but can't seem to find what needs to be done.
Node-Webkit - Starting Maximized
9.7k Views Asked by Rewind At
1
There are 1 best solutions below
Related Questions in NODE-WEBKIT
- Using html5 localstorage instead of cookies with passport.js
- Node Webkit / Angular / Change Model
- Sending gcode string to 3D printer through a serial port
- js-bson: Failed to load c++ bson extension, using pure JS version on mongoose in Windows
- Node-webkit child spawn UNKNOWN error
- Getting error Cannot extract package using Node-webkit
- angularJS / handing over parameter
- NWJS access external files on FlashDrive
- Experimenting with node-webkit: node-odbc fails
- Indexeddb with Node Webkit
- Node request not saving zip stream
- Stream read returning empty in nodejs
- Passing command line arguments to a node-webkit-builder project
- Fast folder hashing in Windows Node
- Access Node-Webkit App from other Application
Related Questions in MAXIMIZE-WINDOW
- Stage will not stay maximized when changing scenes
- How can I launch emacsclient maximized from the commandline
- MFC window maximized, but to wrong top coordinate
- Node-Webkit - Starting Maximized
- WPF window should not be moved,resized and should only contain minimize,close buttons
- is there any command to change all font when i maximize windows in vb?
- Anaconda Navigator 1.10.0 - Missing maximize opportunity on Ubuntu 20 (Focal Fossa) after upgrade it from 1.9.x version
- How determine if mouse points to maximise button of window under cursor
- Detect maximize event in browser Javascript
- delphi how to prevent a MDI child from being maximized?
- How to maximize a window using GLUT
- Non Maximized matlab GUI figure
- PowerShell control maximise / restore for console window
- C#, when I maximize the form it moves to the top left
- Maximized owned Form not restoring correctly
Trending Questions
- UIImageView Frame Doesn't Reflect Constraints
- Is it possible to use adb commands to click on a view by finding its ID?
- How to create a new web character symbol recognizable by html/javascript?
- Why isn't my CSS3 animation smooth in Google Chrome (but very smooth on other browsers)?
- Heap Gives Page Fault
- Connect ffmpeg to Visual Studio 2008
- Both Object- and ValueAnimator jumps when Duration is set above API LvL 24
- How to avoid default initialization of objects in std::vector?
- second argument of the command line arguments in a format other than char** argv or char* argv[]
- How to improve efficiency of algorithm which generates next lexicographic permutation?
- Navigating to the another actvity app getting crash in android
- How to read the particular message format in android and store in sqlite database?
- Resetting inventory status after order is cancelled
- Efficiently compute powers of X in SSE/AVX
- Insert into an external database using ajax and php : POST 500 (Internal Server Error)
Popular Questions
- How do I undo the most recent local commits in Git?
- How can I remove a specific item from an array in JavaScript?
- How do I delete a Git branch locally and remotely?
- Find all files containing a specific text (string) on Linux?
- How do I revert a Git repository to a previous commit?
- How do I create an HTML button that acts like a link?
- How do I check out a remote Git branch?
- How do I force "git pull" to overwrite local files?
- How do I list all files of a directory?
- How to check whether a string contains a substring in JavaScript?
- How do I redirect to another webpage?
- How can I iterate over rows in a Pandas DataFrame?
- How do I convert a String to an int in Java?
- Does Python have a string 'contains' substring method?
- How do I check if a string contains a specific word?
I don't think the manifest has an option to do that. Instead, call nw's
Window.maximize()on startup. Something like:Sometime later, in
onloador some other point where you're ready to show the window:This is described in the node-webkit wiki. I don't think you can call maximize before showing the main window though (if it's hidden in manifest), but I haven't really dug into it.
You may want to consider saving the window position, from a UX standpoint. The wiki has an example for doing this.