일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
- openCV
- No SQL
- 데이터 과학
- WebGL
- MongoDB
- 김양재 목사
- probability
- 김양재
- 우리들교회
- R
- data science
- 빅데이타
- Machine Learning
- node.js
- Deep learning
- 인공지능
- Artificial Intelligence
- 김양재 목사님
- 확률
- 통계
- Statistics
- 빅 데이타
- 빅 데이터
- nodeJS
- 빅데이터
- 주일설교
- 딥러닝
- c++
- Big Data
- 몽고디비
- Today
- Total
목록node webkit (11)
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..
목 차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 Modules 이번 글에서는 Node Module의 Third Party Module을 활용하는 방법을 알아보도록 하겠다.Third module 중 하나인 mkdirp를 이용하여 디렉토..
목 차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 Menus 이번 글에서는 Node Module을 활용하는 방법을 알아보도록 하겠다.Codespackage.json{ "main": "index.html", "name": "using node modules", "window": { "toolb..
목 차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 Menus 이번 글에서는 Window Menus를 생성하는 방법을 알아보도록 하겠다. Codespackage.json{ "main": "index.html", "name": "window menus" } index.html12345678910111213141516171819202122232..
목 차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 Control 이번 글에서는 Context Menu를 생성하는 방법을 알아보도록 하겠다.Codepackage.json{ "main": "index.html", "name": "context and window menus", "window": { "fullscreen": true } } index.html1234567891011121314151..
시리즈 목차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 Icons 이번 글에서는 Custom Window Controller를 생성하는 방법을 알아보도록 하겠다.Codepackage.json{ "main": "index.html", "name": "custom window control", "window": { "toolbar": false, "frame" : false, "fullscreen": true } } reset.css123456789101..
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 Menu3. Example 3 - Using Node.js API4. Example 4 - Using Node.js File System 이번 글에서는 Submenu를 생성하는 방법을 알아보도록 하겠다. Codesindex.html: 'Right click' to show context menu. var nw = require('nw.gui'); Node Webkit의 GUI 라이브러리인 nw.gui를 불러온다. var menu = new nw.Menu(); var submenu = new nw.Menu(); menu와 submenu라는 이름으로 Menu() 인스턴스를 생성한다. // Create a nor..
시리즈 목차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의 속성을 정..