From 72f3f9d570dde9f1446b0a77ca8f0f45390da21a Mon Sep 17 00:00:00 2001 From: Sebastian Schmidt Date: Wed, 28 Mar 2018 16:17:11 +0200 Subject: [PATCH] Use the new domain of the Electron project in the README file (#195) --- README.md | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/README.md b/README.md index 383cbfb..df7ef6d 100644 --- a/README.md +++ b/README.md @@ -2,9 +2,9 @@ **Clone and run for a quick way to see Electron in action.** -This is a minimal Electron application based on the [Quick Start Guide](http://electron.atom.io/docs/tutorial/quick-start) within the Electron documentation. +This is a minimal Electron application based on the [Quick Start Guide](https://electronjs.org/docs/tutorial/quick-start) within the Electron documentation. -**Use this app along with the [Electron API Demos](http://electron.atom.io/#get-started) app for API code examples to help you get started.** +**Use this app along with the [Electron API Demos](https://electronjs.org/#get-started) app for API code examples to help you get started.** A basic Electron application needs just these files: @@ -12,7 +12,7 @@ A basic Electron application needs just these files: - `main.js` - Starts the app and creates a browser window to render HTML. This is the app's **main process**. - `index.html` - A web page to render. This is the app's **renderer process**. -You can learn more about each of these components within the [Quick Start Guide](http://electron.atom.io/docs/tutorial/quick-start). +You can learn more about each of these components within the [Quick Start Guide](https://electronjs.org/docs/tutorial/quick-start). ## To Use @@ -33,8 +33,8 @@ Note: If you're using Linux Bash for Windows, [see this guide](https://www.howto ## Resources for Learning Electron -- [electron.atom.io/docs](http://electron.atom.io/docs) - all of Electron's documentation -- [electron.atom.io/community/#boilerplates](http://electron.atom.io/community/#boilerplates) - sample starter apps created by the community +- [electronjs.org/docs](https://electronjs.org/docs) - all of Electron's documentation +- [electronjs.org/community#boilerplates](https://electronjs.org/community#boilerplates) - sample starter apps created by the community - [electron/electron-quick-start](https://github.com/electron/electron-quick-start) - a very basic starter Electron app - [electron/simple-samples](https://github.com/electron/simple-samples) - small applications with ideas for taking them further - [electron/electron-api-demos](https://github.com/electron/electron-api-demos) - an Electron app that teaches you how to use Electron