npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2025 – Pkg Stats / Ryan Hefner

appnativefy

v2.0.0

Published

AppImages from websites

Downloads

16

Readme

Appnativefy

Appnativefy is an NPM package to make executable AppImage files from any website, it uses the Nativefier API in the backend, with AppImageKIt.

Why AppImages?

AppImages are cross-distro unlike .deb or .rpm. Plus, you dont have to face the hassle of individually installing the package, and another hassle while uninstalling.

With AppImages, there's no installation required, click-to-run.

Uninstall? rm -r <file name>.AppImage Simply delete the file.


npm version

Make a native AppImage for ANY website Dock

Installation

npm install -g appnativefy

Supported platforms & prerequisites

Supported platforms

Supported for: GNU/Linux Operating Systems

Architectures: amd64 (Soon adding support for additional architectures)

Prerequisites

  • Node.JS
  • NPM Package manager
  • Wget

You can install these by:

Debian and derivatives (Ubuntu, Kubuntu, KDE Neon, Kali, etc.)

sudo pkcon update (for KDE Neon) | sudo apt-get update (for all other distros)
sudo apt-get install nodejs npm wget

Arch and derivatives (Garuda, Manjaro, etc.)

sudo pacman -Syu
sudo pacman -S nodejs npm wget

Gentoo

emerge nodejs wget

Usage

Usage For example, to make an AppImage for YouTube, simply run,

appnativefy --name "YouTube" --url "https://youtube.com"

But if you wish to sign-in to YouTube, pass --services, this argument enables to sign-in using services such as Microsoft 365 and Google, in sites that support them. So, you'll be supposed to run

appnativefy --name "YouTube" --url "https://youtube.com" --services

Generally the command is:

appnativefy --name <value> --url <website url> <additional options>

It is recommended to pass the values inside double quotes " ", so that it may not cause any errors. Also, whitespaces in the value of --name will be replaced with hyphens -. This means, if the name is supplied as --name "Hello world", it will change into Hello-world.

The built AppImage will be found in ~/appnativefy, with the file name: <name>-x86_64.AppImage

List of options

  • --help | -h
appnativefy --help, appnativefy -h

Prints possible command-line options

  • --version | -V
appnativefy --version, appnativefy -V

Prints the installation directory and version of installed appnativefy

  • --name | -n [REQUIRED]
--name <value>,-n <value>

To specify the name of the AppImage to be built, ---url | -u and --name | -n are required options, also, it is recommended to enclose the values using doublequotes " ".

  • --url | -u [REQUIRED]
--url <value>, -u <value>

URL of the website, that is to be nativefied.

  • --internalurls
--internalurls <REGEX>

Regular expression for internal URLs.

  • --appCopyright
--appCopyright <value>

Copyright information

  • --appVersion
--appVersion <value>

App version info

  • -e, --electronVersion
-e, --electronVersion <value without the "v">

Specifies which version of electron framework to be used by the AppImage.

  • --saveAs
--saveAs

Shows a "Save As" dialog while downloading.

  • --favicon
--favicon

Forces to use the favicon of the site while making the AppImage. If not specified in certain cases, the icon may be different than expected in sites such as Microsoft Teams.

  • --widevine
--widevine

Adds Widevine support to the AppImage, to enable playing DRM enabled content in sites such as Spotify.

  • --services
--services

NOTE: If passed without --internalurls will default to (.*) as internal URLs.

Changes the useragent to Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:85.0) Gecko/20100101 Firefox/85.0 to overcome incompatibilty with Microsoft 365 and/or Google sign-in services.

  • --noOverwrite
--noOverwrite

Specifies that the directory should not be overwritten if already present.

  • --conceal
--conceal

Conceals the sourcecode of the electronized website inside the AppImage into an ASAR archive.

  • --counter
--counter

Use a counter that persists even with window focus for the application badge.

  • --singleinstance
--singleinstance

Only a single instance of the AppImage will execute, if already running, the instance will be brought to front.

  • --disablegpu
--disablegpu

Disables hardware acceleration, in the AppImage.

Examples

Usage

Google

appnativefy --name "Google" --url "https://google.com" --services

https://github.com/sarweshparajuli/appnativefy-gifs/raw/main/examples/Google-x86_64.AppImage

Messenger

appnativefy --name "Messenger" --url "https://messenger.com" --services --favicon

https://github.com/sarweshparajuli/appnativefy-gifs/raw/main/examples/Messenger-x86_64.AppImage

Microsoft Teams

appnativefy --name "Microsoft Teams" --url "https://teams.microsoft.com/_" --services --favicon

https://github.com/sarweshparajuli/appnativefy-gifs/raw/main/examples/Microsoft-Teams-x86_64.AppImage

Spotify

appnativefy --name "Spotify" --url "https://open.spotify.com" --services --widevine --favicon

https://github.com/sarweshparajuli/appnativefy-gifs/raw/main/examples/Spotify-x86_64.AppImage

YouTube

appnativefy --name "YouTube" --url "https://youtube.com" --services

https://github.com/sarweshparajuli/appnativefy-gifs/raw/main/examples/YouTube-x86_64.AppImage