본문 바로가기

전체 글83

Electron Sample Electron 알아보기 Electron의 시작점으로 다음과 같이 https://github.com/electron/electron-quick-start 에서 샘플프로그램의 소스를 볼 수 있다. 샘플프로그램 시작하기 다음의 명령어로 샘플프로그램을 local로 복사해 온다. git clone https://github.com/electron/electron-quick-start quick-star 저장소의 history를 정리해준다. git init 그러면 다음과 같은 메시지를 볼 수있을 것이다. Reinitialized existing Git repository in /Users//Code//quick-start/.git 다음과 같은 명령어로 필요한 모듈을 설치해 준다. npm install 다음과 같은.. 2024. 2. 14.
Electron 개발 환경 Electron 개발 환경 설정 - Nodjs Nodejs설치 https://nodejs.org/en - git 버전컨트롤설정 https://git-scm.com/ - electron nodejs와 함께 설치 된 npm을 통해 설지 npm install electron --save-dev (프로젝트마다 개별 설치) npm install –g electron (전역으로설치) - 설치 확인 command 창에서 다음과 같이 입력 electron -version 다음과 같은 창이 나옴. 2024. 2. 13.
Electron의 구조 Electron의 구조 참조 사이트 : https://www.electronjs.org/ 2024. 2. 12.
컴퓨터공학부 커리큘럼 서울대 컴퓨터공학부 커리큘럼 동국대학교컴퓨터공학과 커리큘럼 광운대학교 컴퓨터정보공학구 커리큘럼 스탠포드 CS 커리큘럼 103: Mathematical Foundations of Computing CS 106A: Programming Methodology CS 106B/ENGR 70B: Programming Abstractions CS 106X/ENGR 70X: Programming Abstractions (Accelerated) CS 107: Computer Organization and Systems CS 107E: Computer Systems from the Ground Up CS 108: Object-Oriented Systems Design CS 109: Introduction to Probab.. 2024. 1. 24.