All Projects → nativefier → Nativefier

nativefier / Nativefier

Licence: mit
Make any web page a desktop application

Programming Languages

typescript
32286 projects
javascript
184084 projects - #8 most used programming language
shell
77523 projects

Projects that are alternatives of or similar to Nativefier

Issues
Caret issues
Stars: ✭ 326 (-98.89%)
Mutual labels:  desktop-application
Mstdn
Tiny web-based mastodon client for your desktop
Stars: ✭ 390 (-98.67%)
Mutual labels:  desktop-application
Launcher
Launcher for BlueMaxima's Flashpoint
Stars: ✭ 458 (-98.44%)
Mutual labels:  desktop-application
Guark
Build awesome Golang desktop apps and beautiful interfaces with Vue.js, React.js, Framework 7, and more...
Stars: ✭ 334 (-98.86%)
Mutual labels:  desktop-application
Gallium
Build desktop applications in Go and HTML.
Stars: ✭ 3,694 (-87.41%)
Mutual labels:  desktop-application
Pyfladesk
create desktop application by using Flask and QtWebKit
Stars: ✭ 399 (-98.64%)
Mutual labels:  desktop-application
React Proto
🎨 React application prototyping tool for developers and designers 🏗️
Stars: ✭ 3,261 (-88.89%)
Mutual labels:  desktop-application
Nteract
📘 The interactive computing suite for you! ✨
Stars: ✭ 5,713 (-80.54%)
Mutual labels:  desktop-application
Library Assistant
Modern Library Management Software using JavaFX
Stars: ✭ 380 (-98.71%)
Mutual labels:  desktop-application
Laravel Kit
A desktop Laravel admin panel app
Stars: ✭ 440 (-98.5%)
Mutual labels:  desktop-application
Chronos
📊 📊 📊 Monitors the health and web traffic of servers, microservices, and containers with real-time data monitoring and receive automated notifications over Slack or email.
Stars: ✭ 347 (-98.82%)
Mutual labels:  desktop-application
Ardublockly
Visual programming for Arduino. Based on blockly, implements Arduino code generation and facilitates program uploading.
Stars: ✭ 363 (-98.76%)
Mutual labels:  desktop-application
Mindmapp
🚀 Web application to draw mind maps.
Stars: ✭ 401 (-98.63%)
Mutual labels:  desktop-application
Wails
Create desktop apps using Go and Web Technologies.
Stars: ✭ 4,915 (-83.25%)
Mutual labels:  desktop-application
Bandcampdownloader
A Windows app used to download albums from Bandcamp.
Stars: ✭ 548 (-98.13%)
Mutual labels:  desktop-application
Thermal
One stop to manage all git repository
Stars: ✭ 321 (-98.91%)
Mutual labels:  desktop-application
Lein template descjop
A Leiningen template(Clojure/ClojureScript Project) for Web based desktop application with Electron (atom-shell).
Stars: ✭ 394 (-98.66%)
Mutual labels:  desktop-application
Windows 10 Toast Notifications
Python library to display Windows 10 Toast Notifications
Stars: ✭ 672 (-97.71%)
Mutual labels:  desktop-application
Consulo
Platform repository of Consulo. Plugins implementation hold in their repositories
Stars: ✭ 632 (-97.85%)
Mutual labels:  desktop-application
Luminancehdr
A complete workflow for HDR imaging
Stars: ✭ 443 (-98.49%)
Mutual labels:  desktop-application

Nativefier

Example of Nativefier app in the macOS dock

You want to make a native wrapper for WhatsApp Web (or any web page).

nativefier 'web.whatsapp.com'

Walkthrough animation

You're done.

Introduction

Nativefier is a command-line tool to easily create a desktop app for any web site with minimal configuration. Apps are wrapped by Electron (which uses Chromium under the hood) in an OS executable (.app, .exe, etc) for use on Windows, macOS 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 or Whatsapp Web (HN thread). Nativefier features:

  • Automatically retrieval of app icon / name.
  • JavaScript and CSS injection.
  • Many more, see the API docs or nativefier --help

Installation

  • macOS 10.9+ / Windows / Linux
  • Node.js >= 12.9 and npm >= 6.9
  • Optional dependencies:
    • ImageMagick or GraphicsMagick to convert icons. Make sure convert and identify or gm are in your system $PATH.
    • Wine to package Windows apps under non-Windows platforms. Make sure wine is in your system $PATH.

Then, install Nativefier globally with npm install -g nativefier

Usage

To create a native desktop app for medium.com, simply nativefier "medium.com"

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'

Read the API documentation or run nativefier --help to learn about other command-line flags usable to configure the packaged app.

To have high-resolution icons used by default for an app/domain, please contribute to the icon repository!

Build Commands Catalog

For a list of build commands contributed by the nativefier community take a look at the CATALOG.md file

Usage with Docker

Nativefier is also usable from Docker.

  • Pull the latest stable image from Docker Hub: docker pull nativefier/nativefier
  • ... or build the image yourself: docker build -t local/nativefier . (in this case, replace nativefier/ in the below examples with local/)

By default, the command nativefier --help will be executed. To build e.g. a Gmail nativefier app to a writable local ~/nativefier-apps,

docker run --rm -v ~/nativefier-apps:/target/ nativefier/nativefier https://mail.google.com/ /target/

You can pass Nativefier flags, and mount volumes to provide local files. For example, to use an icon,

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/

Development

Help welcome on bugs and feature requests.

Developer / build docs, API documentation, Changelog.

License

MIT

Troubleshooting

Before submitting a question or bug report, please ensure you have read through these common issues and see if you can resolve the problem on your own. If you still encounter issues after trying these steps, or you don't see something similar to your issue listed, please submit a bug report.

Take a look a the Build Command Catalog as a working command for your application may already exist there.

I am trying to use Nativefier to build an app for a site that tells me I have an old/unsupported browser.

This issue comes up for sites that do not wish to support an app made with Nativefier or similar technologies (such as Google and WhatsApp)

Troubleshooting Steps

  1. First try setting the --user-agent to something different. Try using the value you would get at [https://www.whatismybrowser.com/detect/what-is-my-user-agent] and use your current browser's user agent.
  2. If this doesn't work, the site (such as WhatsApp) may be using a service worker to analyze the app and detect. You can disable the service worker cache by doing the following, which is a known fix for WhatsApp:
    1. Create a javascript file containing the following snippet:
      if ('serviceWorker' in navigator) {
          caches.keys().then(function (cacheNames) {
              cacheNames.forEach(function (cacheName) {
                  caches.delete(cacheName);
              });
          });
      }
    2. Inject the javascript file into your app when generating it with the --inject argument.

I am trying to use Nativefier to build an app for a site with video, but the video won't play.

This issue comes up for certain sites like HBO Max and Udemy.

Troubleshooting Steps

  1. First try using the --widevine argument when building the app. This uses the Castlabs version of Electron which allows the playback of DRM enabled video.
  2. If this doesn't work, the site may require your app to be signed for --widevine to work. See the Castlabs documentation on using their application signing service to sign the application.

I am trying different options to Nativefier to experiment with, but noticing that sometimes things cache between rebuilds of my app.

This issue can occur because the cache of the app and the app itself are kept separate by default. You can try clearing out the cache.

Troubleshooting Steps

  1. Delete your app's cache, which can be found under the folder <your_app_name_lower_case>-nativefier-<random_id> in your OS's app data directory
    • <your_app_name_lower_case> represents the lowercase version of your app's name. E.g., GitHub would be github.
    • <random_id> represents a randomly generated id for your app. Open the containing folder to see what it may be.
  2. For Linux, the app data directory is $XDG_CONFIG_HOME or ~/.config
  3. For MacOS, the app data directory is ~/Library/Application\ Support/
  4. For Windows, the app data directory is %APPDATA%
Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].