자바스크립트로 데스크톱 어플리케이션을 만들어 보자!


참조 URL
  1. http://electron.atom.io/
  2. https://github.com/sindresorhus/awesome-electron
  3. http://nwjs.io/
  4. https://www.nativescript.org/
  5. https://facebook.github.io/react-native/

 





  • 모바일 애플리케이션 개발 도구: NativeScript, React Native
  • 데스크톱 애플리케이션 개발 도구: Electron, NW.js


  • 아래는 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" 에서 확인해 보자












    + Recent posts