TypeScript MacOS

Open-source TypeScript projects categorized as MacOS

Top 23 TypeScript MacOS Projects

  • hyperterm

    A terminal built on web technologies

  • Project mention: Terminal commands I use as a frontend developer | dev.to | 2024-03-09

    I am using iTerm2 on my macOS. Other available options are Hyper and VS Code’s inbuilt terminal, which I sometimes use for quick tests. You can open a terminal in VS Code by using the keyboard shortcut CMD + J or CTRL + J on Windows, or View → Terminal.

  • autocomplete

    IDE-style autocomplete for your existing terminal & shell

  • Project mention: Fig Is Sunsetting | news.ycombinator.com | 2024-03-14
  • SurveyJS

    Open-Source JSON Form Builder to Create Dynamic Forms Right in Your App. With SurveyJS form UI libraries, you can build and style forms in a fully-integrated drag & drop form builder, render them in your JS app, and store form submission data in any backend, inc. PHP, ASP.NET Core, and Node.js.

    SurveyJS logo
  • InvokeAI

    InvokeAI is a leading creative engine for Stable Diffusion models, empowering professionals, artists, and enthusiasts to generate and create visual media using the latest AI-driven technologies. The solution offers an industry leading WebUI, supports terminal use through a CLI, and serves as the foundation for multiple commercial products.

  • Project mention: Stable Diffusion 3 | news.ycombinator.com | 2024-02-22

    Probably not, since I have no idea what you're talking about. I've just been using the models that InvokeAI (2.3, I only just now saw there's a 3.0) downloads for me [0]. The SD1.5 one is as good as ever, but the SD2 model introduces artifacts on (many, but not all) faces and copyrighted characters.

    [0] https://github.com/invoke-ai/InvokeAI

  • chatbox

    Chatbox is a desktop client for ChatGPT, Claude and other LLMs, available on Windows, Mac, Linux

  • Project mention: Chatbox (latest versions) is not open source; AskHN: anything similar? | news.ycombinator.com | 2024-02-08
  • Kap

    An open-source screen recorder built with web technology

  • Project mention: From Dull to Dazzling: 3 Methods to Elevate Your Writing with Visual Content | dev.to | 2024-05-02

    For MacOS: Kap - https://github.com/wulkano/Kap

  • electron-builder

    A complete solution to package and build a ready for distribution Electron app with “auto update” support out of the box

  • Project mention: From a Day to 17 Minutes: How We’ve Dealt with Slow Build Times | dev.to | 2024-03-08

    The last step for each platform's build process is to upload the app to our GitHub releases repository. We automated this step from the beginning, but when we started creating builds for the new M1 chip Macs, we had to add a manual step. This involved merging files needed for the auto-updater to work with the M1 builds.

  • Zettlr

    Your One-Stop Publication Workbench

  • Project mention: Obsidian 1.5 Desktop (Public) | news.ycombinator.com | 2023-12-26
  • InfluxDB

    Power Real-Time Data Analytics at Scale. Get real-time insights from all types of time series data with InfluxDB. Ingest, query, and analyze billions of data points in real-time with unbounded cardinality.

    InfluxDB logo
  • devhub

    TweetDeck for GitHub - Filter Issues, Activities & Notifications - Web, Mobile & Desktop with 99% code sharing between them (by devhubapp)

  • super-productivity

    Super Productivity is an advanced todo list app with integrated Timeboxing and time tracking capabilities. It also comes with integrations for Jira, Gitlab, GitHub and Open Project.

  • Project mention: Super Productivity is a todo list app with Timeboxing and time tracking | news.ycombinator.com | 2023-12-16
  • outline-apps

    Outline Client and Manager, developed by Jigsaw. Outline Manager makes it easy to create your own VPN server. Outline Client lets you share access to your VPN with anyone in your network, giving them access to the free and open internet.

  • Project mention: Russia has started indiscriminately blocking all OpenVPN/WireGuard connections | news.ycombinator.com | 2024-01-20
  • inshellisense

    IDE style command line auto complete

  • Project mention: Carapace: A multi-shell completion library and binary | news.ycombinator.com | 2024-04-22
  • rubick

    🔧 Electron based open source toolbox, free integration of rich plug-ins. 基于 electron 的开源工具箱,自由集成丰富插件。

  • Project mention: Boost Your Productivity with Rubcik | news.ycombinator.com | 2023-08-07

    Rubick is not only powerful but also free and open source, ensuring transparency and fostering collaboration. Contribute to its growth or simply enjoy its benefits without any cost.

    Discover the ultimate tool that makes your day-to-day tasks simpler and more efficient. Try Rubick today and experience the future of productivity!

    Get Rubick: [Download Now](https://github.com/rubickCenter/rubick/releases)

  • caprine

    Elegant Facebook Messenger desktop app

  • Project mention: Why do people still use VBA? | news.ycombinator.com | 2023-11-15
  • fluent-reader

    Modern desktop RSS reader built with Electron, React, and Fluent UI

  • Project mention: A modern cross-platform desktop RSS reader | news.ycombinator.com | 2023-11-13
  • forge

    :electron: A complete tool for building and publishing Electron applications

  • Project mention: Electron Code Signing: Using SSL.com codeSignTool for EV code signing | dev.to | 2024-05-09

    const config: ForgeConfig = { packagerConfig: { asar: true, icon: './build/icon', name: 'My App', appBundleId: 'com.myApp.electron', usageDescription: { Camera: 'App requires access to your camera for complete experience.', }, }, rebuildConfig: {}, makers: [ new MakerSquirrel((arch) => ({ // Make sure app name without space, see @https://github.com/electron/forge/issues/3462 name: appName.replace(' ', '-'), authors: 'Myself Inc', description: 'My Desktop app' })), ], hooks: { postMake: async (config, makeResults) => { if (process.platform === 'darwin') { return makeResults; } else { // Window machine runs this block makeResults.map((result) => { const TEMP_DIR = path.join(__dirname, 'release', 'temp'); if (!fs.existsSync(TEMP_DIR)) { fs.mkdirSync(TEMP_DIR, { recursive: true }); } result.artifacts.forEach((artifact) => { if (artifact.endsWith('.exe')) { console.log('===> Signing', artifact); const { name, dir } = path.parse(artifact); // CodeSignTool can't sign in place without verifying the overwrite with a // y/m interaction so we are creating a new file in a temp directory and // then replacing the original file with the signed file. const tempFile = path.join(TEMP_DIR, name); const setDir = `cd ./CodeSignTool/CodeSignTool-v1.2.7-windows`; // depending on where your codeSignTool is located const signFile = `CodeSignTool sign -input_file_path="${artifact}" -output_dir_path="${TEMP_DIR}" -credential_id="${process.env.WIN_SIGN_CREDENTIAL_ID}" -username="${process.env.WIN_SIGN_USERNAME}" -password="${process.env.WIN_SIGN_PASSWORD}" -totp_secret="${process.env.WIN_SIGN_TOTP}"`; const moveFile = `mv "${tempFile}" "${dir}"`; childProcess.execSync(`${setDir} && ${signFile} && ${moveFile}`, { stdio: 'inherit', }); } }); return result; }); return makeResults; } } } };

  • rd

    Container Management and Kubernetes on the Desktop

  • Project mention: Rancher Desktop v1.11.0 with Snapshots, Container Dashboard and More | news.ycombinator.com | 2023-11-03
  • privacy.sexy

    Open-source tool to enforce privacy & security best-practices on Windows, macOS and Linux, because privacy is sexy

  • Project mention: Debloat Windows in 2022 | /r/informatik | 2023-12-11
  • MQTTX

    A Powerful and All-in-One MQTT 5.0 client toolbox for Desktop, CLI and WebSocket.

  • Project mention: Bridging FINS Data to MQTT: Protocol Explained and Hands-on Tutorial | dev.to | 2023-08-25

    This section will introduce how to use Neuron to collect data from FINS TCP devices, upload the collected data to EMQX, and view it using MQTTX.

  • Imagine

    🖼️ PNG/JPEG optimization app for macOS, Windows and Linux. (by meowtec)

  • sol

    MacOS launcher & command palette

  • iptvnator

    :tv: Cross-platform IPTV player application with multiple features, such as support of m3u and m3u8 playlists, favorites, TV guide, TV archive/catchup and more.

  • Project mention: Hypnotix IPTV App | /r/ManjaroLinux | 2023-06-06
  • renative

    🚀🚀🚀 Unified Development Platform for iOS, tvOS, Android, Android TV, Android Wear, Web, Tizen TV, Tizen Watch, Tizen Mobile, LG webOS, macOS/OSX, Windows, KaiOS, FirefoxOS Firefox TV platforms

  • exifcleaner

    Cross-platform desktop GUI app to clean image metadata

  • Project mention: Anonimlik Rehberi | /r/KGBTR | 2023-10-23
  • SaaSHub

    SaaSHub - Software Alternatives and Reviews. SaaSHub helps you find the best software and product alternatives

    SaaSHub logo
NOTE: The open source projects on this list are ordered by number of github stars. The number of mentions indicates repo mentiontions in the last 12 Months or since we started tracking (Dec 2020).

TypeScript MacOS related posts

  • Electron Code Signing: Using SSL.com codeSignTool for EV code signing

    1 project | dev.to | 9 May 2024
  • I hate online Lorem Ipsum Generator so I made my own

    1 project | news.ycombinator.com | 3 May 2024
  • Fig Is Sunsetting

    1 project | news.ycombinator.com | 14 Mar 2024
  • Fig Is Sunsetting

    3 projects | news.ycombinator.com | 12 Mar 2024
  • Kando: The Cross-Platform Pie Menu

    2 projects | news.ycombinator.com | 31 Jan 2024
  • Super Productivity is a todo list app with Timeboxing and time tracking

    1 project | news.ycombinator.com | 16 Dec 2023
  • Saving Linux Desktop. Unifying repositories is the only way

    2 projects | /r/linux | 7 Dec 2023
  • A note from our sponsor - SurveyJS
    surveyjs.io | 10 May 2024
    With SurveyJS form UI libraries, you can build and style forms in a fully-integrated drag & drop form builder, render them in your JS app, and store form submission data in any backend, inc. PHP, ASP.NET Core, and Node.js. Learn more →

Index

What are some of the best open-source MacOS projects in TypeScript? This list will help you:

Project Stars
1 hyperterm 42,688
2 autocomplete 24,290
3 InvokeAI 21,384
4 chatbox 18,679
5 Kap 17,598
6 electron-builder 13,373
7 Zettlr 9,640
8 devhub 9,533
9 super-productivity 8,402
10 outline-apps 8,149
11 inshellisense 8,100
12 rubick 7,285
13 caprine 6,880
14 fluent-reader 6,573
15 forge 6,254
16 rd 5,564
17 privacy.sexy 3,539
18 MQTTX 3,488
19 Imagine 3,415
20 sol 1,844
21 iptvnator 1,856
22 renative 1,762
23 exifcleaner 1,683

Sponsored
SaaSHub - Software Alternatives and Reviews
SaaSHub helps you find the best software and product alternatives
www.saashub.com