electron 4.0.0-nightly.20180821 → 4.0.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +8 -2
- package/cli.js +1 -1
- package/electron.d.ts +563 -259
- package/install.js +1 -1
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -39,9 +39,14 @@ versioning. As of version 2.0.0, Electron follows semver, so you don't need `--s
|
|
|
39
39
|
For more installation options and troubleshooting tips, see
|
|
40
40
|
[installation](docs/tutorial/installation.md).
|
|
41
41
|
|
|
42
|
-
## Quick start
|
|
42
|
+
## Quick start & Electron Fiddle
|
|
43
43
|
|
|
44
|
-
|
|
44
|
+
Use [`Electron Fiddle`](https://github.com/electron/fiddle)
|
|
45
|
+
to build, run, and package small Electron experiments, to see code examples for all of Electron's APIs, and
|
|
46
|
+
to try out different versions of Electron. It's designed to make the start of your journey with
|
|
47
|
+
Electron easier.
|
|
48
|
+
|
|
49
|
+
Alternatively, clone and run the
|
|
45
50
|
[electron/electron-quick-start](https://github.com/electron/electron-quick-start)
|
|
46
51
|
repository to see a minimal Electron app in action:
|
|
47
52
|
|
|
@@ -55,6 +60,7 @@ npm start
|
|
|
55
60
|
## Resources for learning Electron
|
|
56
61
|
|
|
57
62
|
- [electronjs.org/docs](https://electronjs.org/docs) - all of Electron's documentation
|
|
63
|
+
- [electron/fiddle](https://github.com/electron/fiddle) - A tool to build, run, and package small Electron experiments
|
|
58
64
|
- [electron/electron-quick-start](https://github.com/electron/electron-quick-start) - a very basic starter Electron app
|
|
59
65
|
- [electronjs.org/community#boilerplates](https://electronjs.org/community#boilerplates) - sample starter apps created by the community
|
|
60
66
|
- [electron/simple-samples](https://github.com/electron/simple-samples) - small applications with ideas for taking them further
|
package/cli.js
CHANGED
|
@@ -4,7 +4,7 @@ var electron = require('./')
|
|
|
4
4
|
|
|
5
5
|
var proc = require('child_process')
|
|
6
6
|
|
|
7
|
-
var child = proc.spawn(electron, process.argv.slice(2), {stdio: 'inherit'})
|
|
7
|
+
var child = proc.spawn(electron, process.argv.slice(2), { stdio: 'inherit', windowsHide: false })
|
|
8
8
|
child.on('close', function (code) {
|
|
9
9
|
process.exit(code)
|
|
10
10
|
})
|