electron을 이용하여 web 페이지를 앱으로 만들어주는 어플(nativefier)이 나왔다. 


https://www.npmjs.com/package/nativefier



맥에서 웹을 어플로 실행시킬 수 있다.


npm을 먼저 설치 후, 다음과 같이 진행한다.



$ npm install nativefier -g


$ nativefier "http://map.google.com"

Skipping darwin x64 (output dir already exists, use --overwrite to force)

App built to undefined


$ nativefier --app-name "gmap" "http://map.google.com"

Packaging app for platform darwin x64 using electron v0.36.4

App built to /Users/Samuel/gmap-darwin-x64


$ open  /Users/Samuel/gmap-darwin-x64/gmap.app/


그리고, 구글 맵스 어플은 applications 폴더에도 존재한다. "gmap"으로 검색하면 바로 구글 맵을 실행할 수 있다.




Posted by '김용환'
,