StackShareStackShare
Follow on
StackShare

Discover and share technology stacks from companies around the world.

Follow on

© 2025 StackShare. All rights reserved.

Product

  • Stacks
  • Tools
  • Feed

Company

  • About
  • Contact

Legal

  • Privacy Policy
  • Terms of Service
MacGap
ByMacGapMacGap

MacGap

#373in Frameworks
Discussions2
Followers44
OverviewDiscussions2AdoptionAlternativesIntegrations
Try It

What is MacGap?

MacGap provides HTML/JS/CSS developers an Xcode project for developing native OS X App. These Apps run in OS X's WebView and take advantage of WebKit technologies. MacGap exposes a JavaScript API for OS X integration, such as displaying native notifications or writing data to a file. MacGap is extremely lightweight and nimble; a blank application weighs less than 1MB.

MacGap is a tool in the Frameworks category of a tech stack.

Key Features

open-sourcetiny compiled app sizesMac App Store compatibleaccess to many Mac OS X-specific features

MacGap Pros & Cons

Pros of MacGap

  • ✓Remember that Mac app you always wanted to create... ?

Cons of MacGap

  • ✗Only for Mac

MacGap Alternatives & Comparisons

What are some alternatives to MacGap?

Electron

Electron

With Electron, creating a desktop application for your company or idea is easy. Initially developed for GitHub's Atom editor, Electron has since been used to create applications by companies like Microsoft, Facebook, Slack, and Docker. The Electron framework lets you write cross-platform desktop applications using JavaScript, HTML and CSS. It is based on io.js and Chromium and is used in the Atom editor.

JavaFX

JavaFX

It is a set of graphics and media packages that enables developers to design, create, test, debug, and deploy rich client applications that operate consistently across diverse platforms.

pygame

pygame

It is a cross-platform set of Python modules designed for writing video games. It includes computer graphics and sound libraries designed to be used with the Python programming language.

Tauri

Tauri

It is a framework for building tiny, blazing fast binaries for all major desktop platforms. Developers can integrate any front-end framework that compiles to HTML, JS and CSS for building their user interface. The backend of the application is a rust-sourced binary with an API that the front-end can interact with.

Qt5

Qt5

It is a full development framework with tools designed to streamline the creation of applications and user interfaces for desktop, embedded, and mobile platforms.

Element

Element

Element is a Vue 2.0 based component library for developers, designers and product managers, with a set of design resources.

Try It

Visit Website

Adoption

On StackShare

Companies
4
SFMC
Developers
3
FNS

MacGap Discussions

Discover why developers choose MacGap. Read real-world technical decisions and stack choices from the StackShare community.

StackShare Editors
StackShare Editors

Oct 25, 2016

Shipped the the first production Electron application outside of Atom

Needs adviceonNode.jsNode.jsReactReactTypeScriptTypeScript

Slack's new desktop application was launched for macOS. It was built using Electron for a faster, frameless look with a host of background improvements for a superior Slack experience. Instead of adopting a complete-in-box approach taken by other apps, Slack prefers a hybrid approach where some of the assets are loaded as part of the app, while others are made available remotely. Slack's original desktop app was written using the MacGap v1 framework using WebView to host web content within the native app frame. But it was difficult to upgrade with new features only available to Apple's WKWebView and moving to this view called for a total application rewrite.

Electron brings together Chromium's rendering engine with the Node.js runtime and module system. The new desktop app is now based on an ES6 + async/await React application is currently being moved gradually to TypeScript. Electron functions on Chromium's multi-process model, with each Slack team signed into a separate process and memory space. It also helps prevent remote content to directly access desktop features using a feature called WebView Element which creates a fresh Chromium renderer process and assigns rendering of content for its hosting renderer. Additional security can be ensured by preventing Node.js modules from leaking into the API surface and watching out for APIs with file paths. Communication between processes on Electron is carried out via electron-remote, a pared-down, zippy version of Electron's remote module, which makes implementing the web apps UI much easier.

0 views0
Comments
StackShare Editors
StackShare Editors

Oct 5, 2016

Building desktop apps with a hybrid Electron approach

Needs adviceonNode.jsNode.jsReactReactElectronElectron

The Slack desktop app was originally written us the MacGap framework, which used Apple’s WebView to host web content inside of a native app frame. As this approach continued to present product limitations, Slack decided to migrate the desktop app to Electron. Electron is a platform that combines the rendering engine from Chromium and the Node.js runtime and module system. The desktop app is written as a modern ES6 + async/await React application.

For the desktop app, Slack takes a hybrid approach, wherein some of the assets ship as part of the app, but most of their assets and code are loaded remotely.

0 views0
Comments