JavaScript Windows

Open-source JavaScript projects categorized as Windows

Top 23 JavaScript Window Projects

  • node

    Node.js JavaScript runtime ✨🐢🚀✨

  • Project mention: Node 22.0.0 Just Released | news.ycombinator.com | 2024-04-24
  • marktext

    📝A simple and elegant markdown editor, available for Linux, macOS and Windows.

  • Project mention: Show HN: I've built open-source, collaborative, WYSIWYG Markdown editor | news.ycombinator.com | 2023-06-23
  • 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
  • Motrix

    A full-featured download manager.

  • Project mention: Motrix: A full-featured download manager | news.ycombinator.com | 2024-02-24
  • N1

    :love_letter: An extensible desktop mail app built on the modern web. Forks welcome!

  • appium

    Cross-platform automation framework for all kinds of your apps built on top of W3C WebDriver protocol

  • Project mention: A Step-by-Step Guide to Test Automation with Appium | dev.to | 2023-08-15

    appium plugin install --source=npm images Know more about images plugin, visit https://github.com/appium/appium/tree/master/packages/images-plugin

  • Boostnote

    This repository is outdated and new Boost Note app is available! We've launched a new Boost Note app which supports real-time collaborative writing. https://github.com/BoostIO/BoostNote-App

  • brave-browser

    Brave browser for Android, iOS, Linux, macOS, Windows.

  • Project mention: FLaNK AI Weekly 18 March 2024 | dev.to | 2024-03-18
  • 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
  • spicetify-cli

    Command-line tool to customize Spotify client. Supports Windows, MacOS, and Linux.

  • Project mention: Ask HN: How is the Spotify app so bad? | news.ycombinator.com | 2024-03-21

    There's spicetify, which you can use to remove podcasts from and customize the UI of the desktop client:

    https://github.com/spicetify/spicetify-cli

  • ChatALL

    Concurrently chat with ChatGPT, Bing Chat, Bard, Alpaca, Vicuna, Claude, ChatGLM, MOSS, 讯飞星火, 文心一言 and more, discover the best answers

  • Project mention: NeuralGPT - Building A Universal Multi-Purpose Framework For Cooperating LLMs | /r/AIPsychology | 2023-10-27

    First of all, I'd like it to be distributed for users to install as a hub running independently from any browser in the background - although with the possibility of accessing it's interface through a browser if necessary. If I'd have to give you some working examples of similar solutions, it would be something like connection of such apps like ChatAll with a service called SAMP that interconnects multiple apps/services provided by ESA CDPP and related to space weather and multiple satellite missions (http://3dview.cdpp.eu) - yup, that's yet another of those weird hobbies of mine :P

  • webtorrent-desktop

    ❤️ Streaming torrent app for Mac, Windows, and Linux

  • Project mention: Ask HN: What could make torrenting more popular again? | news.ycombinator.com | 2023-12-30

    - https://webtorrent.io/desktop

    Do you have any ideas on what could popularize the technology again?

  • BingGPT

    Desktop application of new Bing's AI-powered chat (Windows, macOS and Linux)

  • Project mention: BingGPT - Desktop application of new Bing's AI-powered chat | /r/bing | 2023-05-28

    Link [Github]

  • ChakraCore

    ChakraCore is an open source Javascript engine with a C API.

  • Project mention: This year in Servo: over 1000 pull requests and beyond | news.ycombinator.com | 2023-12-18

    I thought it would be a fun weird project to make Servo work with MS' abandoned JavaScript engine:

    https://github.com/chakra-core/ChakraCore

    Of course it is written in C++ and you'd probably want a pure Rust browser. But it is sad seeing that fairly complete open source JIT JavaScript engine sit and rot.

  • win11React

    Windows 11 in React 💻🌈⚡

  • Project mention: Windows 11 in Svelte | news.ycombinator.com | 2023-05-10

    We actually first created it with https://github.com/blueedgetechno/win11React then I was learning Svelte didn't have any new project ideas so redid it with Svelte and found out its just much better DX. Much easy to maintain + much more :)

  • TiddlyWiki

    A self-contained JavaScript wiki for the browser, Node.js, AWS Lambda etc.

  • Project mention: It's 29 Delphi, I mean | news.ycombinator.com | 2024-02-22

    > What does ownership mean here?

    It means owning the code and the data. With webapps, the code and data are hosted and owned, the users do not own the code, cannot run it independently. This is a clear dileneation between owner and user, and the owners can use that clear line to create artificial scarcity of various kinds. (The most popular being the subscription SaaS model). It's also easier to defend your IP since end users never see your binaries.

    I like to make my software single html files whenever possible. People can just save them and run them locally. Havent met anyone who cares yet though.

    I like that idea a lot, and I care. I think others care, but yes, it's a niche interest. Take a look at https://tiddlywiki.com/ for an example of a fairly successful project that uses the single html format running locally. However it suffers from limitations on File|Save which often requires a separate runtime of some kind to support.

    Another project that approaches this ideal is https://redbean.dev/, @jart's tiny, performant, featureful single-file webserver. In this case the "single file" is a server executable + zip whose state must be updated on the command-line, but I think hits a sweet spot in terms of practicality, and a global minima when it comes to minimizing dependencies. (Redbean bundles SQLite and Lua so it's also possible to do through-the-web state updates as in a traditional webapp.)

    My own project, Simpatico, aspires to be something along these lines. Eventually your browser tab is both a client and server process, connecting via websockets to other connected browsers, storing all state locally. I call this pattern "monomorphism", a play on the "isomorphic" javascript SPA. The server[2] is currently written in ~1 node file, but eventually I would like to port to redbean (and greenbean, the websocket version of redbean, but it isn't quite ready yet). The server grew several features to support a fast, practical BTD loop using markdown[1], and safe, performant execution on the public internet[2], but ultimately I'd like to pare it down to serving a single html file and allow the connected clients to provide all diversity of experience. I've used it to explore all kinds of browser apis, from crypto[3] to svg[4] to writing my own libraries (combine[4] and stree[5]). And it's all running locally, and easily hosted on a $5 VPS, and its all open source.

    1 - https://simpatico.io/lit.md

    2 - https://simpatico.io/reflector

    3 - https://simpatico.io/crypto

    4 - https://simpatico.io/combine

    5 - https://simpatico.io/stree

  • Cider

    A new cross-platform Apple Music experience based on Electron and Vue.js written from scratch with performance in mind. 🚀

  • Project mention: Spotify HiFi is still MIA after three years, and now so is my subscription | news.ycombinator.com | 2024-02-23

    I looked into swapping to Apple Music before but couldn't find a way to play lossless music on Linux making swapping pointless. Apparently[0] decryption for lossless isn't supported for 3rd party clients.

    Anyone know of a way around this?

    [0]: https://github.com/ciderapp/Cider/discussions/889

  • winbox

    WinBox is a modern HTML5 window manager for the web: lightweight, outstanding performance, no dependencies, fully customizable, open source!

  • Project mention: WinBox is a modern HTML5 window manager for the web: lightweight, outstanding performance, no dependencies, fully customizable, open source | /r/u_Superb_Possible_1227 | 2023-04-28
  • nodegit

    Native Node bindings to Git.

  • notion-enhancer

    An enhancer/customiser for the all-in-one productivity workspace Notion

  • Project mention: HELP PLEASE I AM BEGGING HELP I WANT MY PRETTY COLOURS | /r/Notion | 2023-12-11

    So I've been using notion enhanced for a year now, and it's all been working fine and dandy until a couple months ago, and now whenever I try to open it, it's stuck on the loading screen. I deleted it and reinstalled it like 5 times, deleted notion and reinstalled it, restarted my computer and nada. Still not working. Google sends me to github (like for example https://github.com/notion-enhancer/notion-enhancer/issues/812 this is literally my issue) but ya girl doesn't understand anything and commands scare me. I tried to follow what the nice internet people said to do, but I don't know what I'm doing and it didn't work. I'm losing my mind and my grip on reality. Please someone send help.

  • twinkle-tray

    Easily manage the brightness of your monitors in Windows from the system tray

  • Project mention: Scrollbars Are Becoming a Problem | news.ycombinator.com | 2023-10-12

    Monitorian requires a subscription for hotkeys and CLI, unfortunately.

    Twinkle Tray is an alternative: https://github.com/xanderfrangos/twinkle-tray

  • stretchly

    The break time reminder app

  • Project mention: Show HN: LookAway – My first native macOS app to combat digital eye strain | news.ycombinator.com | 2023-10-18

    Nice job, i think below software are good for windows user too.

    https://hovancik.net/stretchly/

  • Google-Assistant-Unofficial-Desktop-Client

    A cross-platform unofficial Google Assistant Client for Desktop (powered by Google Assistant SDK)

  • Project mention: Spracheingabe Windows | /r/de_EDV | 2023-07-11
  • Noi

    🚀 Power Your World with AI - Explore, Extend, Empower.

  • Project mention: Noi: Power Your World with AI – Explore, Extend, Empower | news.ycombinator.com | 2024-03-25
  • node-windows

    Windows support for Node.JS scripts (daemons, eventlog, UAC, etc).

  • Project mention: cual es el laburo mas "rancio" que te toco hacer? | /r/devsarg | 2023-05-11
  • WorkOS

    The modern identity platform for B2B SaaS. The APIs are flexible and easy-to-use, supporting authentication, user identity, and complex enterprise features like SSO and SCIM provisioning.

    WorkOS 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).

JavaScript Windows related posts

Index

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

Project Stars
1 node 103,634
2 marktext 44,592
3 Motrix 43,263
4 N1 24,788
5 appium 17,901
6 Boostnote 17,084
7 brave-browser 16,646
8 spicetify-cli 16,622
9 ChatALL 14,043
10 webtorrent-desktop 9,560
11 BingGPT 9,360
12 ChakraCore 9,031
13 win11React 8,852
14 TiddlyWiki 7,710
15 Cider 6,961
16 winbox 6,105
17 nodegit 5,586
18 notion-enhancer 4,630
19 twinkle-tray 4,584
20 stretchly 4,353
21 Google-Assistant-Unofficial-Desktop-Client 3,548
22 Noi 3,528
23 node-windows 2,753

Sponsored
The modern identity platform for B2B SaaS
The APIs are flexible and easy-to-use, supporting authentication, user identity, and complex enterprise features like SSO and SCIM provisioning.
workos.com