일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | 4 | |||
5 | 6 | 7 | 8 | 9 | 10 | 11 |
12 | 13 | 14 | 15 | 16 | 17 | 18 |
19 | 20 | 21 | 22 | 23 | 24 | 25 |
26 | 27 | 28 | 29 | 30 | 31 |
- 빅 데이타
- 몽고디비
- No SQL
- 빅 데이터
- Deep learning
- 김양재 목사님
- R
- Machine Learning
- 통계
- 주일설교
- 확률
- 김양재 목사
- Artificial Intelligence
- node.js
- Big Data
- 빅데이타
- data science
- 김양재
- 데이터 과학
- 빅데이터
- 우리들교회
- MongoDB
- 딥러닝
- WebGL
- 인공지능
- Statistics
- c++
- probability
- openCV
- nodeJS
- Today
- Total
목록node-webkit (5)
Scientific Computing & Data Science
목 차1. Example 1 - HelloWorld 2. Example 2 - Context Menu3. Example 3 - Using Node.js API4. Example 4 - Using Node.js File System 5. Example 5 - Submenu 6. Example 6 - Tray Icons7. Example 7 - Custom Window Control8. Example 8 - Context Menus9. Example 9 - Window Menus10.Example 10 - Using Node Modules11.Example 11 - Using Third Party Modules 이번 글에서는 채팅 등의 메시지 앱에 사용되는 알림(Notifications) 기능을 Node W..
Node-Webkit Part 1 : Introduction Node-Webkit Part 2 : Custom Window Controls Node-Webkit Part 3 : The Manifest File Node-Webkit Part 4 : Context and Window Menus Node-Webkit Part 5 : Using Node.js Modules Node-Webkit Part 6 : Wrapping it up!
시리즈 목차1. Example 1 - HelloWorld 2. Example 2 - Context Menu 이번 글에서는 Node-Webkit에서 Node.JS API를 활용하는 간단한 어플리케이션을 작성해 보도록 하겠다. 본 예제 또한 Node-Webkit의 공식 사이트의 예제를 기반으로 한 것이다. Codesindex.html:12345678910111213141516171819202122232425262728293031323334353637383940414243444546 Using NW API Maximize WindowRestore WindowMinimize Window // get the system platform using node.js var nw = require('nw.gui'); v..
지난 글에 Node-Webkit에 대하여 소개한 것에 이어 Node-Webkit의 공식 Documentation Site의 예제를 바탕으로 두번째 예제를 구성해 보았다. 시리즈 목차1. Example 1 - HelloWorld 본 예제는 오른쪽 마우스 클릭 시 Context Menu를 화면에 출력하고 선택된 아이템 항목을 alert 명령을 통해 확인한다. Source Codepackage.json:{ "name": "context menu", "main": "index.html", "window": { "toolbar": false } } name: app의 이름을 지정한다.main: 진입점을 정의한다. 진입점은 index.html로 지정하였다.window: application window의 속성을 정..
이번 글에서는 HTML, CSS, JavaScript로 desktop app를 제작할 수 있는 Node Webkit으로 가장 기초적인 "Hello World" App을 만들어 보도록 하겠다. 우선 Node Webkit 페이지(http://nwjs.io)를 방문하여 자신의 OS 플랫폼에 따라 다운로드를 한다. 그리고나서 npm(node package manager)을 통해 nodewebkit 패키지를 설치하되, -g(global) 옵션으로 설치한다: $ sudo npm install -g nodewebkit Example - HelloWorldCoding의 가장 첫 단계인 HelloWorld 예제를 만들어보자.Windows예제를 작성할 폴더를 만든다. 설명을 위해 폴더의 이름을 "nw-hellowworld..