Nativefier/README.md

371 lines
9.9 KiB
Markdown
Raw Normal View History

2015-07-05 09:24:36 +02:00
# Nativefier
[![Build Status](https://travis-ci.org/jiahaog/nativefier.svg?branch=development)](https://travis-ci.org/jiahaog/nativefier)
2016-01-23 07:04:52 +01:00
[![npm version](https://badge.fury.io/js/nativefier.svg)](https://www.npmjs.com/package/nativefier)
2016-01-31 15:02:35 +01:00
[![Code Climate](https://codeclimate.com/github/jiahaog/nativefier/badges/gpa.svg)](https://codeclimate.com/github/jiahaog/nativefier)
2016-01-18 18:17:27 +01:00
![Dock Screenshot](https://raw.githubusercontent.com/jiahaog/nativefier/master/screenshots/Dock%20Screenshot.png)
2015-07-06 07:44:49 +02:00
2016-01-19 15:02:01 +01:00
You want to make a native wrapper for Google Maps (or any web page).
```bash
$ nativefier maps.google.com
```
You're done.
2015-07-05 09:24:36 +02:00
2016-01-19 15:02:01 +01:00
## Introduction
2015-07-05 09:24:36 +02:00
2016-01-22 05:31:30 +01:00
Nativefier is a command line tool that allows you to easily create a desktop application for any web site with succinct and minimal configuration. Apps are wrapped by [Electron](http://electron.atom.io) in an OS executable (`.app`, `.exe`, etc.) for use on Windows, OSX and Linux.
I did this because I was tired of having to `⌘-tab` or `alt-tab` to my browser and then search through the numerous open tabs when I was using [Facebook Messenger](http://messenger.com) or [Whatsapp Web](http://web.whatsapp.com).
2015-07-05 10:43:44 +02:00
2016-01-22 14:16:45 +01:00
View the changelog [here](https://github.com/jiahaog/nativefier/blob/master/History.md).
2016-01-29 18:57:30 +01:00
[Relevant Hacker News Thread](https://news.ycombinator.com/item?id=10930718)
### Features
- Automatically retrieves the correct icon and app name
2016-02-25 05:12:23 +01:00
- Flash Support (Needs Testing)
2016-02-25 08:09:26 +01:00
- Javascript and CSS injection
2015-07-05 09:24:36 +02:00
## Installation
2016-01-22 05:31:30 +01:00
With [Node.js](https://nodejs.org/) installed,
2015-07-05 09:24:36 +02:00
```bash
2016-01-18 18:17:27 +01:00
# for use from the command line
2015-07-06 04:12:30 +02:00
$ npm install nativefier -g
2015-07-05 09:24:36 +02:00
```
2016-01-28 04:38:58 +01:00
## Usage
2016-01-28 04:38:58 +01:00
Creating a native desktop app for [medium.com](http://medium.com):
2016-01-28 04:38:58 +01:00
```bash
$ nativefier "http://medium.com"
```
2016-01-28 04:38:58 +01:00
Nativefier will intelligently attempt to determine the app name, your OS and processor architecture, among other options. If desired, the app name or other options can be overwritten by specifying the `--name "Medium"` as part of the command line options, as such.
2016-01-28 04:38:58 +01:00
```bash
$ nativefier --name "Some Awesome App" "http://medium.com"
2016-01-28 04:38:58 +01:00
```
2015-07-05 09:24:36 +02:00
**For Windows Users:** Take note that the application menu is automatically hidden by default, you can press `alt` on your keyboard to access it.
**For Linux Users:** Do not put spaces if you define the app name yourself with `--name`, as this will cause problems (tested on Ubuntu 14.04) when pinning a packaged app to the launcher.
2016-02-23 10:13:51 +01:00
## Optional Dependencies
2016-02-23 10:13:51 +01:00
2016-03-10 06:03:40 +01:00
### Icons for Windows Apps from non-Windows platforms
2015-07-05 09:24:36 +02:00
2016-03-10 06:03:40 +01:00
You need [Wine](https://www.winehq.org/) installed, make sure that `wine` is in your `$PATH`.
### Icon Conversion for OSX
To support conversion of a `.png` or `.ico` into a `.icns` for a packaged OSX app icon (currently only supported on OSX), you need the following dependencies.
#### [iconutil](https://developer.apple.com/library/mac/documentation/GraphicsAnimation/Conceptual/HighResolutionOSX/Optimizing/Optimizing.html)
You need [XCode](https://developer.apple.com/xcode/) installed.
#### [imagemagick](http://www.imagemagick.org/script/index.php)
2016-01-18 18:17:27 +01:00
```bash
$ brew install imagemagick
2016-01-18 18:17:27 +01:00
```
Make sure `convert` and `identify` are in your `$PATH`.
2016-01-18 18:17:27 +01:00
### Flash
2016-01-18 18:17:27 +01:00
#### [Google Chrome](https://www.google.com/chrome/)
2016-01-18 18:17:27 +01:00
Google Chrome is required for flash to be supported. Alternatively, you could download the PepperFlash Chrome plugin and specify the path to it directly with the `--flash` flag. See the command line options below for more details.
2016-01-29 07:46:09 +01:00
## Command Line Options
2016-01-22 05:31:30 +01:00
2016-01-18 18:17:27 +01:00
```bash
$ nativefier [options] <targetUrl> [dest]
```
Command line options are listed below.
2016-01-18 18:17:27 +01:00
#### Target Url
The url to point the application at.
2016-01-18 18:17:27 +01:00
#### [dest]
Specifies the destination directory to build the app to, defaults to the current working directory.
#### Help
```
-h, --help
```
Prints the usage information.
#### Version
```
-V, --version
```
Prints the version of your `nativefier` install.
#### [name]
2016-01-18 18:17:27 +01:00
```
-n, --name <value>
2016-01-18 18:17:27 +01:00
```
The name of the application, which will affect strings in titles and the icon.
**For Linux Users:** Do not put spaces if you define the app name yourself with `--name`, as this will cause problems (tested on Ubuntu 14.04) when pinning a packaged app to the launcher.
2016-01-18 18:17:27 +01:00
#### [platform]
```
-p, --platform <value>
```
Automatically determined based on the current OS. Can be overwritten by specifying either `linux`, `win32`, or `darwin`.
#### [arch]
2016-01-18 18:17:27 +01:00
2015-07-05 14:44:18 +02:00
```
2016-01-18 18:17:27 +01:00
-a, --arch <value>
```
Processor architecture, automatically determined based on the current OS. Can be overwritten by specifying either `ia32` or `x64`.
2016-01-18 18:17:27 +01:00
#### [electron-version]
2016-01-18 18:17:27 +01:00
```
-e, --electron-version <value>
```
Electron version without the `v`, see https://github.com/atom/electron/releases.
#### [overwrite]
2016-01-18 18:17:27 +01:00
```
-o, --overwrite
```
Specifies if the destination directory should be overwritten.
#### [conceal]
2016-01-18 18:17:27 +01:00
```
-c, --conceal
```
Specifies if the source code within the nativefied app should be packaged into an archive, defaults to false, [read more](http://electron.atom.io/docs/v0.36.0/tutorial/application-packaging/).
#### [icon]
2016-01-18 18:17:27 +01:00
```
-i, --icon <path>
```
2016-01-28 04:38:58 +01:00
2016-01-28 16:40:19 +01:00
##### Packaging for Windows and Linux
2016-01-28 04:38:58 +01:00
2016-01-28 16:40:19 +01:00
The icon parameter should be a path to a `.png` file.
2016-01-18 18:17:27 +01:00
2016-01-28 16:40:19 +01:00
##### Packaging for OSX
2015-07-06 04:12:30 +02:00
2016-01-28 16:40:19 +01:00
The icon parameter can either be a `.icns` or a `.png` file if the optional dependencies listed [above](#optional-dependencies) are installed.
With `iconutil`, Imagemagick `convert` and `identify` optional dependencies in your `PATH`, Nativefier will automatically convert the `.png` to a `.icns` for you.
2016-01-28 16:40:19 +01:00
###### Manually Converting `.icns`
[iConvertIcons](https://iconverticons.com/online/) can be used to convert `.pngs`, though it can be quite cumbersome.
To retrieve the `.icns` file from the downloaded file, extract it first and press File > Get Info. Then select the icon in the top left corner of the info window and press `⌘-C`. Open Preview and press File > New from clipboard and save the `.icns` file. It took me a while to figure out how to do that and question why a `.icns` file was not simply provided in the downloaded archive.
#### [counter]
```
--counter
```
2016-01-22 05:31:30 +01:00
Use a counter that persists even with window focus for the application badge for sites that use an "(X)" format counter in the page title (i.e. Gmail). Same limitations as the badge option (above).
2016-01-18 18:17:27 +01:00
#### [width]
2015-07-05 09:24:36 +02:00
2016-01-18 18:17:27 +01:00
```
2016-01-23 16:02:44 +01:00
--width <value>
2016-01-18 18:17:27 +01:00
```
2015-07-06 04:12:30 +02:00
2016-01-18 18:17:27 +01:00
Width of the packaged application, defaults to `1280px`.
2016-01-18 18:17:27 +01:00
#### [height]
2015-07-05 09:24:36 +02:00
```
2016-01-23 16:02:44 +01:00
--height <value>
2016-01-18 18:17:27 +01:00
```
Height of the packaged application, defaults to `800px`.
2015-07-05 09:24:36 +02:00
2016-01-22 15:42:56 +01:00
#### [show-menu-bar]
```
-m, --show-menu-bar
```
Specifies if the menu bar should be shown.
#### [user-agent]
```
-u, --user-agent <value>
```
Set the user agent to run the created app with.
2016-01-23 07:04:52 +01:00
#### [honest]
```
--honest
```
By default, nativefier uses a preset user agent string for your OS and masquerades as a regular Google Chrome browser, so that sites like WhatsApp Web will not say that the current browser is unsupported.
If this flag is passed, it will not override the user agent.
#### [ignore-certificate]
```
--ignore-certificate
```
Forces the packaged app to ignore certificate errors.
#### [insecure]
```
--insecure
```
2016-02-22 21:33:33 +01:00
Forces the packaged app to ignore web security errors.
2016-02-23 10:13:51 +01:00
#### [flash]
```
--flash <value>
```
By default, nativefier will automatically try to determine the location of your Google Chrome flash binary. In the event that Flash does not appear to work, you can specify it directly with this command line flag, by retrieving the location of the Flash path from [chrome://plugins](chrome://plugins), under `Adobe Flash Player` > `Location`.
2016-02-25 05:12:23 +01:00
From my experience, it might be helpful to pass the `--insecure` flag if you are using nativefied flash apps, as some `https` websites tend to serve flash insecurely.
2016-02-25 08:09:26 +01:00
#### [inject]
```
--inject <value>
```
Allows you to inject a javascript or css file. This command can be run multiple times to inject the files.
Example:
```bash
$ nativefier http://google.com --inject ./some-js-injection.js --inject ./some-css-injection.css ~/Desktop
```
2016-02-25 12:09:08 +01:00
#### [full-screen]
```
--full-screen
```
Makes the packaged app start in full screen.
2016-01-29 07:46:09 +01:00
## Programmatic API
You can use the Nativefier programmatic API as well.
```bash
$ npm install --save nativefier
```
In your `.js` file:
```javascript
var nativefier = require('nativefier').default;
2016-01-29 07:46:09 +01:00
// possible options
var options = {
name: 'Web WhatsApp',
targetUrl: 'http://web.whatsapp.com', // required
platform: 'darwin',
arch: 'x64',
version: '0.36.4',
out: '~/Desktop',
overwrite: true,
asar: false, // see conceal
icon: '~/Desktop/icon.png',
counter: false,
width: 1280,
height: 800,
showMenuBar: false,
userAgent: null,
ignoreCertificate: false,
2016-01-29 07:46:09 +01:00
insecure: false,
honest: false
};
nativefier(options, function(error, appPath) {
if (error) {
console.error(error);
return;
}
console.log('App has been nativefied to', appPath);
});
```
More description about the `options` for `nativefier` can be found at the section on [command line flags](#command-line-options).
2015-07-06 07:44:49 +02:00
## How It Works
2016-01-18 18:17:27 +01:00
A template app with the appropriate event listeners and callbacks set up is included in the `./app` folder. When the `nativefier` command is executed, this folder is copied to a temporary directory with the appropriate parameters in a configuration file, and is packaged into an app with [Electron Packager](https://github.com/maxogden/electron-packager).
2015-07-06 07:44:49 +02:00
In addition, I built and used [pageIcon](https://github.com/jiahaog/page-icon) to automatically retrieve a relevant icon from a url.
2016-01-28 16:40:19 +01:00
## Development
2016-01-23 07:04:52 +01:00
Setting up the project
```bash
$ git clone https://github.com/jiahaog/nativefier.git
$ cd nativefier
2016-01-23 07:04:52 +01:00
# Set up dependencies for the cli tool and the placeholder app
$ npm run dev-up
2016-01-23 07:04:52 +01:00
# Set up symlinks so that you can run `$ nativefier` for your local changes
$ npm link
2016-01-23 07:04:52 +01:00
```
2016-01-23 07:04:52 +01:00
After doing so, you can then run nativefier with your test parameters
```bash
$ nativefier <...>
```
2016-01-23 07:04:52 +01:00
Don't forget to compile source files (after making changes):
```bash
$ npm run build
```
2016-01-23 07:04:52 +01:00
Or you can automatically watch the files for changes with:
```bash
$ npm run watch
```
2015-07-06 07:44:49 +02:00
## Notes
Tested mostly on OSX, but should work for Windows and Linux.