2
2

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 5 years have passed since last update.

5分でelectronの開発環境整える(Windows)

Posted at

概要

Electronのアプリ作りたい!って思ったときに速攻できちゃう開発環境の整え方。
作りたいアプリは未定(いやなんか作りたいって思ってたんだけど忘れちゃったのよ:frowning2:

何番煎じか分からないけどとりあえず書いちゃえ!みたいなテンションで書いちゃいます。
アウトプット大事。

前提条件

・npmが入っていること
・gitが入っていること

手順

その1

ひとまずelectronをダウンロード

> npm install -g electron

その2

Electronのクイックスタートリポジトリをフォークしてクローン

クイックスタートの公開先はこちらです。
https://github.com/electron/electron-quick-start

とりあえず実行してみたいって人は以下のコマンド。

> git clone https://github.com/electron/electron-quick-start.git

その3

実行

> electron .

ね?簡単でしょう?

今後これでなに作ろうかなーって考えてます。
なんかいいアイデアないかなぁ…

2
2
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
2
2

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?