자바스크립트로 데스크톱 어플리케이션을 만들어 보자!
아래는 electron에서 제공하는 quick start를 실행한 화면이다. 다음 스텝으로 실행할 수 있다.
(node와 git이 설치 되어 있어야 한다. )
# Clone the Quick Start repository
$ git clone https://github.com/electron/electron-quick-start
# Go into the repository
$ cd electron-quick-start
# Install the dependencies and run
$ npm install && npm start
[그림] electron quick start 실행 화면
위와 같이 데스크톱 화면에서 실행 화면을 확인 할 수 있다.
아래는 Electron api demos를 받아 실행해 보자.
$ git clone https://github.com/electron/electron-api-demos
$ cd electron-api-demos
$ npm install
$ npm start
[그림2] electron api demos 실행 화면
Electron으로 개발된 애플리케이션에 대해서 더 자세한 정보를 알고 싶다면 "https://github.com/sindresorhus/awesome-electron" 에서 확인해 보자
'NodeJS' 카테고리의 다른 글
[Angular2]Angular CLI ( Common line interface ) (0) | 2016.07.29 |
---|---|
Node.js의 Express에 대한 한국어 설명 (0) | 2013.11.28 |
NTVS - Node Tools for Visual Studio 1.0 Alpha - Visual Studio에서 Node 개발하기 (0) | 2013.11.27 |
[Node.js] Node.js에서 C#, F#, Python, PowerShell 사용할 수 있도록 해 주는 Edge.js (0) | 2013.06.03 |
Node.JS를 멀티 코어에서 동작(node.js Multi Core Run) (0) | 2012.11.20 |