4.7 KiB
이 문서는 아직 Electron 기여자가 번역하지 않았습니다.
Electron에 기여하고 싶다면 기여 가이드를 참고하세요.
문서의 번역이 완료되면 이 틀을 삭제해주세요.
Electron 에 대하여
Electron 은 HTML, CSS 와 Javascript 로 크로스플랫폼 데스크톱 애플리케이션을 위해 Github 에서 개발한 오픈소스 라이브러리 입니다. Electron 은 Chromium 와 Node.js 를 단일 실행으로 합치고 앱을 Mac, Windows 와 Linux 용으로 패키지화 할 수 있게 함으로써 이것을 가능하게 합니다.
Electron 은 2013년에 Github 의 해킹 가능한 텍스트 편집기 Atom 의 프레임워크로 시작하였습니다. 이 둘은 2014년에 오픈소스화 됩니다.
그후로 오픈소스 개발자, 스타트업과 안정된 회사에서 인기있는 도구가 되었습니다. Electron 을 사용하는 곳을 보세요..
Electron 의 공헌자와 릴리즈에 대한 자세한 내용이나 개발을 시작하려면 Quick Start Guide 를 읽어보세요.
코어 팀과 공헌자
Electron 은 Gihub 의 팀과 커뮤니티에서 활동중인 공헌자 그룹에 의해 유지됩니다. 일부 공헌자는 개인이고, 일부는 Electron 으로 개발을 하는 큰 회사입니다. 프로젝트에 자주 공여하는 분은 기꺼이 메인테이너로 추가하겠습니다. Electron 에 공헌하기를 참고하세요..
출시
Electron 출시는 빈번합니다. 중요한 버그 수정, 새 API 추가 또는 Chromium 이나 Node.js 의 업데이트시에 출시합니다.
업데이트 종속성
Electron's version of Chromium is usually updated within one or two weeks after a new stable Chromium version is released, depending on the effort involved in the upgrade.
When a new version of Node.js is released, Electron usually waits about a month before upgrading in order to bring in a more stable version.
In Electron, Node.js and Chromium share a single V8 instance—usually the version that Chromium is using. Most of the time this just works but sometimes it means patching Node.js.
버전 관리
Due to the hard dependency on Node.js and Chromium, Electron is in a tricky versioning position and does not follow semver
. You should therefore always reference a specific version of Electron. Read more about Electron's versioning or see the versions currently in use.
LTS
현재 Electron 의 구버전에 대한 장기 지원은 없습니다. If your current version of Electron works for you, you can stay on it for as long as you'd like. If you want to make use of new features as they come in you should upgrade to a newer version.
A major update came with version v1.0.0
. If you're not yet using this version, you should read more about the v1.0.0
changes.
중심 철학
In order to keep Electron small (file size) and sustainable (the spread of dependencies and APIs) the project limits the scope of the core project.
For instance, Electron uses just the rendering library from Chromium rather than all of Chromium. This makes it easier to upgrade Chromium but also means some browser features found in Google Chrome do not exist in Electron.
New features added to Electron should primarily be native APIs. If a feature can be its own Node.js module, it probably should be. See the Electron tools built by the community.
이력
다음은 Electron 이력의 주요 시점입니다.
📆 | 🎉 |
---|---|
2013년 4월 | Atom Shell 탄생. |
2014년 5월 | Atom Shell 오픈소스화. |
2015년 4월 | Electron 으로 개. |
2016년 5월 | Electron v1.0.0 출시. |
2016년 5월 | Electron 앱이 Mac App Store 와 호환. |
2016년 8월 | Windows Store 의 Electron 앱 지원. |