You can clone with HTTPS or Subversion.
Clone in Desktop Download ZIPEvery app package should contain a manifest file named package.json, it will tell node-webkit how to open the app and control how the browser behaves.
{
"main": "index.html",
"name": "nw-demo",
"description": "demo app of node-webkit",
"version": "0.1",
"keywords": [ "demo", "node-webkit" ],
"window": {
"icon": "link.png",
"toolbar": true,
"width": 800,
"height": 500,
"position": "mouse",
"min_width": 400,
"min_height": 200,
"max_width": 800,
"max_height": 600
},
"webkit": {
"plugin": true
}
}package.json should be written in the format of JSON.
Each package must provide all the following fields in its package descriptor file:
(string) which page should be opened when node-webkit starts.
(string) the name of the package. This must be a unique, lowercase alpha-numeric name without spaces. It may include "." or "_" or "-" characters. It is otherwise opaque.
name should be globally unique since node-webkit will store app's data under the directory named name.
Following fields control which features node-webkit should provide and how node-webkit should open the main window.
(boolean) set nodejs to false will disable node inside WebKit, if you're only using HTML5 to write apps, it could improve stability and performance.
(object) controls how the main window looks, see Window Sub Fields below.
(object) controls what features of WebKit should be on/off, see WebKit Sub Fields below.
(string) the default title of window created by node-webkit, it's very useful if you want to show your own title when the app is starting.
(int) the initial width/height of the main window.
(boolean) should the navigation toolbar be showed.
(string) path to window's icon
(string) be null or center or mouse, controls where window will be put
(int) minimum width/height of window
(int) maximum width/height of window
(boolean) show as desktop background window under X11 environment
(boolean) whether window is resizable (available after node-webkit v0.3.0)
(boolean) whether window is fullscreen (available after node-webkit v0.3.0)
(boolean) specify it to false to make the window frameless (available after node-webkit v0.3.0)
(boolean) specify it to false if you want your app to be hidden on startup (available after node-webkit v0.3.0)
(boolean) whether to use Kiosk mode. In Kiosk mode, the app will be fullscreen and try to prevent users from leaving the app, so you should remember to provide a way in app to leave Kiosk mode (available after node-webkit v0.3.1)
Following fields requires node-webkit >= v0.3.0.
(boolean) whether to load external browser plugins like Flash, default to false.
(boolean) whether to load Java applets, default to false.
(boolean) whether to enable page cache, default to false.
The Packages/1.0 standard specifies many other fields package.json should provide. currently we don't make use of them, but you provide them still.
a brief description of the package. By convention, the first sentence (up to the first ". ") should be usable as a package title in listings.
a version string conforming to the Semantic Versioning requirements.
an Array of string keywords to assist users searching for the package in catalogs.
Array of maintainers of the package. Each maintainer is a hash which must have a "name" property and may optionally provide "email" and "web" properties. For example:
"maintainers":[ {
"name": "Bill Bloggs",
"email": "billblogs@bblogmedia.com",
" web": "http://www.bblogmedia.com",
}]
an Array of hashes each containing the details of a contributor. Format is the same as for author. By convention, the first contributor is the original author of the package.
URL for submitting bugs. Can be mailto or http.
array of licenses under which the package is provided. Each license is a hash with a "type" property specifying the type of license and a url property linking to the actual text. If the license is one of the official open source licenses the official license name or its abbreviation may be explicated with the "type" property. If an abbreviation is provided (in parentheses), the abbreviation must be used.
"licenses": [
{
"type": "GPLv2",
"url": "http://www.example.com/licenses/gpl.html",
}
]
Array of repositories where the package can be located. Each repository is a hash with properties for the "type" and "url" location of the repository to clone/checkout the package. A "path" property may also be specified to locate the package in the repository if it does not reside at the root. For example:
"repositories": [
{
"type": "git",
"url": "http://github.com/example.git",
"path": "packages/mypackage"
}
]