Pwa

Top 23 Pwa Open-Source Projects

  • Angular

    Deliver web apps with confidence 🚀

  • Project mention: Angular Signals, Reactive Context, and Dynamic Dependency Tracking | dev.to | 2024-04-24

    /** * https://github.com/angular/angular/blob/75a186e321cb417685b2f13e9961906fc0aed36c/packages/core/src/render3/reactivity/untracked.ts#L15 * * packages/core/src/render3/reactivity/untracked.ts * **/ export function untracked(nonReactiveReadsFn: () => T): T { const prevConsumer = setActiveConsumer(null); try { return nonReactiveReadsFn(); } finally { setActiveConsumer(prevConsumer); } }

  • Postwoman

    👽 Open source API development ecosystem - https://hoppscotch.io

  • Project mention: Bypass CORS errors while testing your APIs using Hoppscotch 🔧 | dev.to | 2024-04-17

    How can Hoppscotch help you intercept the API calls? 👽

  • 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
  • Ionic Framework

    A powerful cross-platform UI toolkit for building native-quality iOS, Android, and Progressive Web Apps with HTML, CSS, and JavaScript.

  • Project mention: Design Systems with Web Components | dev.to | 2023-12-18

    I was recently able to sit down with some of the core members of Ionic, who also created Stencil a toolchain for building Design Systems and Progressive Web Apps. We talked at great length how typically companies are approaching Ionic from a Design Team and need help building components. As a developer I wanted to talk about the Web Components that are used within the Design System first. There was a decent amount of surprise, so I thought I would break down what a Design System is and why it doesn't matter which end you start with, as long as you have both your Design and Development teams working together to build your Design System.

  • devdocs

    API Documentation Browser

  • Project mention: Every Dunder Method in Python | news.ycombinator.com | 2024-04-03

    > I've started to preface all python searches with 'site:python.org'

    You might find DevDocs to be useful: https://devdocs.io/

  • lighthouse

    Automated auditing, performance metrics, and best practices for the web.

  • Project mention: Top 20 Frontend Interview Questions With Answers | dev.to | 2024-02-03

    Google Core Vitals now represent the most important metrics to focus on when it comes to technical SEO. Google Core Vitals are a set of standardized metrics that Google uses to evaluate the user experience offered by a web page and assign it a technical SEO grade. Several tools exist to measure and report technical SEO performance, but the most reliable is Google Lighthouse.

  • Quasar Framework

    Quasar Framework - Build high-performance VueJS user interfaces in record time

  • Project mention: Show HN: Quasar Prime: Vue.js Admin Template | news.ycombinator.com | 2024-03-27

    What does this bring that the Quasar framework doesn’t already? This sure looks like an ad for a barely preconfigured quasar template—but it’s impossible to tell.

    https://quasar.dev/

  • snapdrop

    A Progressive Web App for local file sharing

  • Project mention: WebRTC API | dev.to | 2024-03-31

    Snapdrop.net is one of many examples of the uses for this API, using it with WebSocket API allows endpoints on the same local network to distribute files and send data between them. We can find the source code for the project here.

  • 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
  • dashy

    🚀 A self-hostable personal dashboard built for you. Includes status-checking, widgets, themes, icon packs, a UI editor and tons more!

  • Project mention: Dashy: A self-hostable personal dashboard built for you | news.ycombinator.com | 2024-04-17
  • Spree Commerce

    A headless open source e-commerce platform for global brands

  • Project mention: Ask HN: Suggestions about platform to develop a customizable B2B marketplace | news.ycombinator.com | 2023-05-01
  • capacitor

    Build cross-platform Native Progressive Web Apps for iOS, Android, and the Web ⚡️

  • Project mention: Capacitor by Ionic – Cross-platform apps with web technology | news.ycombinator.com | 2024-04-19
  • Vue Storefront

    Alokai is a Frontend as a Service solution that simplifies composable commerce. It connects all the technologies needed to build and deploy fast & scalable ecommerce frontends. It guides merchants to deliver exceptional customer experiences quickly and easily.

  • amplify-js

    A declarative JavaScript library for application development using cloud services.

  • Project mention: In Defense of Cognito | /r/webdev | 2023-12-11

    One note of caution, though: Amplify uses a frontend-only Cognito integration that stores long-lived, never-rotating refresh tokens in browser storage, where any XSS vulnerability would have access to them. A more secure approach is to implement a couple of backend API routes to store the refresh tokens in `HttpOnly` cookies instead, which I outlined here (option 1 in your case to support SSO). I'll probably open source a solution to do this early next year so we don't all have to keep reinventing this wheel (probably why AWS calls their conference re:invent).

  • onsenui

    Mobile app development framework and SDK using HTML5 and JavaScript. Create beautiful and performant cross-platform mobile apps. Based on Web Components, and provides bindings for Angular 1, 2, React and Vue.js.

  • Project mention: React Component Libraries | dev.to | 2024-03-13

    Official Website: https://onsen.io/

  • go-app

    A package to build progressive web apps with Go programming language and WebAssembly.

  • Project mention: Ask HN: If you were to build a web app today what tech stack would you choose? | news.ycombinator.com | 2023-10-29
  • web-skills

    A visual overview of useful skills to learn as a web developer

  • builder

    Drag and drop headless CMS for React, Vue, Svelte, Qwik, and more

  • Project mention: Introducing GPT Crawler - Turn Any Site Into a Custom GPT With Just a URL | dev.to | 2023-12-21

    I created my first custom GPT based on the Builder.io docs site, forum, and example projects on github and it can now answer detailed questions with code snippets about integrating Builder.io into your site or app. You can try it here (currently requires a paid ChatGPT plan).

  • jekyll-theme-chirpy

    A minimal, responsive, and feature-rich Jekyll theme for technical writing.

  • Project mention: Where are the layouts!? And where is the site object loaded from? (Chirpy Theme) | /r/Jekyll | 2023-12-09

    "Using the Chirpy theme for Jekyll."

  • just

    A library of dependency-free JavaScript utilities that do just one thing. (by angus-c)

  • Project mention: TC39: Add Object.groupBy and Map.groupBy | news.ycombinator.com | 2023-12-19

    You can roll your own or use a utility library. A simple zero-dependency library would be something like just-group-by [1]. Although I now prefer remeda [2] as it seems to have the best typescript support, especially the strict variants such as `grouBy.strict`.

    [1] https://github.com/angus-c/just#just-group-by

  • awesome-learning-resources

    🔥 Awesome list of resources on Web Development.

  • Project mention: Good coding groups for black women? | news.ycombinator.com | 2024-01-13

    - https://github.com/lauragift21/awesome-learning-resources

  • preact-cli

    😺 Your next Preact PWA starts in 30 seconds.

  • offline-plugin

    Offline plugin (ServiceWorker, AppCache) for webpack (https://webpack.js.org/)

  • awesome-pwa

    Awesome list of progressive web apps! (PR welcomed ;))

  • Assemble

    Get the rocks out of your socks! Assemble makes you fast at web development! Used by thousands of projects for rapid prototyping, themes, scaffolds, boilerplates, e-books, UI components, API documentation, blogs, building websites/static site generator, an alternative to Jekyll for gh-pages and more! Gulp- and grunt-friendly.

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

Pwa related posts

Index

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

Project Stars
1 Angular 94,464
2 Postwoman 60,091
3 Ionic Framework 50,410
4 devdocs 33,858
5 lighthouse 27,846
6 Quasar Framework 25,202
7 snapdrop 17,355
8 dashy 15,339
9 Spree Commerce 12,648
10 capacitor 11,126
11 Vue Storefront 10,448
12 amplify-js 9,363
13 onsenui 8,789
14 go-app 7,694
15 web-skills 6,830
16 builder 6,666
17 jekyll-theme-chirpy 6,236
18 just 5,801
19 awesome-learning-resources 5,283
20 preact-cli 4,678
21 offline-plugin 4,503
22 awesome-pwa 4,411
23 Assemble 4,219

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