Nativefier/README.md

119 lines
4.5 KiB
Markdown
Raw Normal View History

2015-07-05 09:24:36 +02:00
# Nativefier
2016-03-13 08:27:32 +01:00
![Example of Nativefier app in the macOS dock](.github/dock-screenshot.png)
2015-07-06 07:44:49 +02:00
2022-01-06 20:21:16 +01:00
You want to make a native-looking wrapper for WhatsApp Web (or any web page).
2016-01-19 15:02:01 +01:00
```bash
nativefier 'web.whatsapp.com'
2016-01-19 15:02:01 +01:00
```
![Walkthrough animation](.github/nativefier-walkthrough.gif)
2016-01-19 15:02:01 +01:00
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
2022-01-06 20:18:22 +01:00
Nativefier is a command-line tool to easily create a "desktop app" for any web site
with minimal fuss. Apps are wrapped by [Electron](https://www.electronjs.org/)
(which uses Chromium under the hood) in an OS executable (`.app`, `.exe`, etc)
2022-01-06 20:18:22 +01:00
usable on Windows, macOS and Linux.
2015-07-05 10:43:44 +02:00
2022-01-06 20:32:43 +01:00
I built this because I grew tired of having to Alt-Tab to my browser and then search
through numerous open tabs when using Messenger or
Whatsapp Web ([HN thread](https://news.ycombinator.com/item?id=10930718)). Nativefier features:
2016-01-29 18:57:30 +01:00
2022-01-06 20:18:22 +01:00
- Automatically retrieval of app icon / name
- Injection of custom JS & CSS
- Many more, see the [API docs](API.md) or `nativefier --help`
2015-07-05 09:24:36 +02:00
## Installation
2022-01-06 20:18:22 +01:00
Install Nativefier globally with `npm install -g nativefier` . Requirements:
2017-04-09 04:35:46 +02:00
- macOS 10.9+ / Windows / Linux
2022-01-06 20:18:22 +01:00
- [Node.js](https://nodejs.org/) ≥ 12.9 and npm ≥ 6.9
Optional dependencies:
2016-01-22 05:31:30 +01:00
2022-01-06 20:18:22 +01:00
- [ImageMagick](http://www.imagemagick.org/) or [GraphicsMagick](http://www.graphicsmagick.org/) to convert icons.
Be sure `convert` + `identify` or `gm` are in your `$PATH`.
- [Wine](https://www.winehq.org/) to build Windows apps from non-Windows platforms.
Be sure `wine` is in your `$PATH`.
2016-01-28 04:38:58 +01:00
## Usage
2016-01-28 04:38:58 +01:00
2022-01-06 20:32:43 +01:00
To create a desktop app for medium.com, simply `nativefier "medium.com"`
2016-01-28 04:38:58 +01:00
2020-07-18 16:27:56 +02:00
Nativefier will try to determine the app name, and well as lots of other options.
If desired, these options can be overwritten. For example, to override the name,
`nativefier --name 'My Medium App' 'medium.com'`
2022-01-06 20:32:43 +01:00
**Read the [API docs](API.md) or run `nativefier --help`**
to learn about command-line flags usable to configure your app.
2016-01-18 18:17:27 +01:00
2022-01-06 20:32:43 +01:00
To have high-quality icons used by default for an app/domain, please
contribute to the [icon repository](https://github.com/nativefier/nativefier-icons).
2016-01-18 18:17:27 +01:00
### Catalog
2022-01-06 20:32:43 +01:00
See [CATALOG.md](CATALOG.md) for build commands & workarounds contributed by the community.
## Docker
Nativefier is also usable from Docker:
- Pull the image from [Docker Hub](https://hub.docker.com/r/nativefier/nativefier): `docker pull nativefier/nativefier`
- ... or build it yourself: `docker build -t local/nativefier .`
2021-01-30 05:49:52 +01:00
(in this case, replace `nativefier/` in the below examples with `local/`)
2022-01-06 20:20:12 +01:00
By default, `nativefier --help` will be executed.
To build e.g. a Gmail app into `~/nativefier-apps`,
```bash
2021-01-30 05:49:52 +01:00
docker run --rm -v ~/nativefier-apps:/target/ nativefier/nativefier https://mail.google.com/ /target/
```
You can pass Nativefier flags, and mount volumes to pass local files. E.g. to use an icon,
```bash
2021-01-30 05:49:52 +01:00
docker run --rm -v ~/my-icons-folder/:/src -v $TARGET-PATH:/target nativefier/nativefier --icon /src/icon.png --name whatsApp -p linux -a x64 https://web.whatsapp.com/ /target/
```
2016-03-13 08:27:32 +01:00
## Development
2016-03-10 19:27:49 +01:00
2021-01-30 05:49:52 +01:00
Help welcome on [bugs](https://github.com/nativefier/nativefier/issues?q=is%3Aopen+is%3Aissue+label%3Abug) and
[feature requests](https://github.com/nativefier/nativefier/issues?q=is%3Aopen+is%3Aissue+label%3Afeature-request)!
2022-01-06 20:18:22 +01:00
Docs: [Developer / build / hacking](HACKING.md), [API / flags](API.md),
[Changelog](CHANGELOG.md).
2016-03-10 19:27:49 +01:00
## License
2015-07-06 07:44:49 +02:00
[MIT](LICENSE.md).
## Troubleshooting
2022-01-06 20:32:43 +01:00
Generally, see [CATALOG.md](CATALOG.md) for ideas & workarounds, and search in
[existing issues](https://github.com/nativefier/nativefier/issues).
2022-01-06 20:32:43 +01:00
### Old/unsupported browser
Some sites intentionally block Nativefier (or similar) apps, e.g. [Google](https://github.com/nativefier/nativefier/issues/831) and [WhatsApp](https://github.com/nativefier/nativefier/issues/1112).
First, try setting the [`--user-agent`](https://github.com/nativefier/nativefier/blob/master/API.md#user-agent) to `firefox` or `safari`.
2022-01-06 20:32:43 +01:00
If still broken, see [CATALOG.md](CATALOG.md) + existing issues.
### Videos won't play
This issue comes up for certain sites like [HBO Max](https://github.com/nativefier/nativefier/issues/1153) and [Udemy](https://github.com/nativefier/nativefier/issues/1147).
2022-01-06 20:32:43 +01:00
First, try [`--widevine`](API.md#widevine).
If still broken, see [CATALOG.md](CATALOG.md) + existing issues.
### Settings cached between app rebuilds
2022-01-06 20:32:43 +01:00
This can occur because app cache lives separate from the app.
2022-01-06 20:32:43 +01:00
Try delete your app's cache, which is found at `<your_app_name_lower_case>-nativefier-<random_id>` in your OS's "App Data" directory (for Linux: `$XDG_CONFIG_HOME` or `~/.config` , for MacOS: `~/Library/Application Support/` , for Windows: `%APPDATA%` or `C:\Users\yourprofile\AppData\Roaming`)