open-wc VS soci-frontend

Compare open-wc vs soci-frontend and see what are their differences.

open-wc

Open Web Components: guides, tools and libraries for developing web components. (by open-wc)

soci-frontend

[Moved to: https://github.com/jjcm/nonio-frontend] (by jjcm)
Our great sponsors
  • SurveyJS - Open-Source JSON Form Builder to Create Dynamic Forms Right in Your App
  • WorkOS - The modern identity platform for B2B SaaS
  • InfluxDB - Power Real-Time Data Analytics at Scale
open-wc soci-frontend
18 4
2,207 19
1.3% -
8.3 0.0
3 days ago 9 months ago
JavaScript JavaScript
MIT License MIT License
The number of mentions indicates the total number of mentions that we've tracked plus the number of user suggested alternatives.
Stars - the number of stars that a project has on GitHub. Growth - month over month growth in stars.
Activity is a relative number indicating how actively a project is being developed. Recent commits have higher weight than older ones.
For example, an activity of 9.0 indicates that a project is amongst the top 10% of the most actively developed projects that we are tracking.

open-wc

Posts with mentions or reviews of open-wc. We have used some of these posts to build our list of alternatives and similar projects. The last one was on 2023-03-16.
  • Testing Web Components with @web/test-runner
    4 projects | dev.to | 16 Mar 2023
    npm init @open-wc@latest Need to install the following packages: @open-wc/[email protected] Ok to proceed? (y) y _.,,,,,,,,,._ .d'' ``b. Open Web Components Recommendations .p' Open `q. .d' Web Components `b. Start or upgrade your web component project with .d' `b. ease. All our recommendations at your fingertips. :: ................. :: `p. .q' `p. open-wc.org .q' `b. @openWc .d' `q.. ..,' See more details at https://open-wc.org/init/ '',,,,,,,,,,'' Note: you can exit any time with Ctrl+C or Esc ✔ What would you like to do today? › Scaffold a new project ✔ What would you like to scaffold? › Web Component ✔ What would you like to add? › Testing (web-test-runner) ✔ Would you like to use typescript? › Yes ✔ What is the tag name of your web component? … testing-components ./ ├── testing-components/ │ ├── .vscode/ │ │ └── extensions.json │ ├── demo/ │ │ └── index.html │ ├── src/ │ │ ├── index.ts │ │ ├── testing-components.ts │ │ └── TestingComponents.ts │ ├── test/ │ │ └── testing-components.test.ts │ ├── .editorconfig │ ├── .gitignore │ ├── LICENSE │ ├── package.json │ ├── README.md │ ├── tsconfig.json │ ├── web-dev-server.config.mjs │ └── web-test-runner.config.mjs ✔ Do you want to write this file structure to disk? › Yes Writing..... done ✔ Do you want to install dependencies? › Yes, with npm
  • Are web components still a thing?
    1 project | /r/webdev | 7 Oct 2022
    Very much still a thing, https://open-wc.org/ is a good resource for examples and best practices.
  • Alternative to tailwind for Vite + Lit + Ts ?
    1 project | /r/vitejs | 25 Sep 2022
    I have this design system project for a company, I need to make web components and instead of using open-wc.org pre-built, I chose to go Vite.
  • How my Frontend skills helped me pass my sailing test
    2 projects | dev.to | 15 Aug 2022
    Nice. We have data with meaning. Now let's create the presentation layer (aka the UI!) and then let's add interactivity to the UI, so we can have feedback when actually simulating an exam (aka the Frontend!). Since in ING we are advocates of Web Components, I always wanted to give this stack a try for side projects. I jumped right into open-wc.org and used the npm generator. Everything worked precisely as expected. It was a breeze since my Chapter is using lit every. single. day. So I could finally get some mileage myself, in writing lit. At work, as a Chapter Lead, I prefer to spend my time more effectively for the team, rather than coding new features by myself; my chapter does it better anyway (#proud).
  • Ask HN: What's is your go to toolset for simple front end development?
    46 projects | news.ycombinator.com | 7 Jul 2022
  • [AskJS] Looking for contributors for open source project / custom web element
    1 project | /r/javascript | 6 Jul 2022
    I suggest following these best practices for creating a custom web element: https://open-wc.org/
  • Open Web Components
    1 project | /r/RushRadar | 4 Jul 2022
  • Open Web Components provides guides, tools, and libraries for developing web components
    1 project | /r/RushRadar | 4 Jul 2022
  • Start Using Web Components with open-wc
    4 projects | dev.to | 1 May 2022
    Open Web Components is a great tool for accessing open-source web components and is very easy to set up with their quickstart guide and easy to understand documentation.
  • Getting Started with Wireframes & Prototypes for Applications
    1 project | dev.to | 6 Apr 2022
    This application is one of many applications out there that are dipping their toes in the land of web components. Web components are still very new and ever-growing. While I have been developing on HAX-the-Web, I am also the Project Manager for HAXCamp 2022. < hax-camp > is an unconference dedicated to all things Web Components!This year's event is being student-run and we anticipate there being discussions about openwc, lit, performance, element composition, css, hax.psu, pedagogy, and design systems. If this work flow is something that you are interested in, I would encourage signing up for this event. It is much more than this, larger than you know and a way to connect with students, faculty, staff, and professional in the industry.

soci-frontend

Posts with mentions or reviews of soci-frontend. We have used some of these posts to build our list of alternatives and similar projects. The last one was on 2023-07-10.
  • Using SVG to create simple sparkline charts
    7 projects | news.ycombinator.com | 10 Jul 2023
    I ended up hand crafting my svg graphs for non.io for many of the same reasons. I originally was looking around at 3rd party libraries, but one of my goals with the site was to use as few external libraries as possible. I made an attempt at dynamically generating the svg points myself, and found it incredibly easy.

    For context, here's the 22 lines of code it took to create a simple svg graph: https://github.com/jjcm/soci-frontend/blob/master/components...

    And here's the final output: https://non.io/Animation-example

  • We Use Web Components at GitHub
    11 projects | news.ycombinator.com | 4 May 2021
    CSS variables help somewhat with this. Variable values penetrate the shadowroot, so you can effectively build an "api" for styles your component. I've done that a few times, and it's been enough for me to get by in most cases. An example is here: https://github.com/jjcm/soci-frontend/blob/master/components...
  • Add a Dark Theme to a Ruby on Rails App
    1 project | news.ycombinator.com | 15 Mar 2021
    This is excellent for a small app, but if you have any production sized app or a larger team, it's not a great approach. Using colors directly in a theme override mean you have to then design and write the css for every page twice.

    A better approach for doing dark mode is to use semantic tokens as a middleman. This works great not just for dark mode, but theming in general - allowing for high contrast mode, color blind modes, and others, while reducing the amount of effort required to style a new page (rather than growing multiplicatively with direct overrides).

    If you're curious about this, I have a very basic schema I made for my app that you're welcome to steal here: https://github.com/jjcm/soci-frontend/blob/master/docs/token...

    Here's an example implementation of the above schema: https://github.com/jjcm/soci-frontend/blob/master/soci-token...

    The great thing is once it's implemented, it becomes VERY easy to know what token to use where. Got a button that's a primary action in a hover state? You probably want to use --brand-background-hover for the bg. Means you can do a lot of the design directly in code I find.

What are some alternatives?

When comparing open-wc and soci-frontend you can also consider the following projects:

turborepo - Incremental bundler and build system optimized for JavaScript and TypeScript, written in Rust – including Turborepo and Turbopack. [Moved to: https://github.com/vercel/turbo]

Stimulus - A modest JavaScript framework for the HTML you already have

rocket - The modern web setup for static sites with a sprinkle of JavaScript

services-as-dom-elements

web3-sign-msg - web3-sign-msg is a modern web component built with ficusjs to sign messages with your eth private key in Metamask

view_component - A framework for building reusable, testable & encapsulated view components in Ruby on Rails.

web - Guides, tools and libraries for modern web development.

community-protocols - Cross-component coordination protocols

custom-elements-manifest - A file format for describing custom elements

ficusjs - FicusJS is a set of lightweight functions for developing applications using web components