Styleguide

Top 23 Styleguide Open-Source Projects

  • javascript

    JavaScript Style Guide

  • Project mention: Airbnb JavaScript Style Guide | news.ycombinator.com | 2024-04-03
  • nodebestpractices

    :white_check_mark: The Node.js best practices list (February 2024)

  • Project mention: 18 Must-Bookmark GitHub Repositories Every Developer Should Know | dev.to | 2024-02-12
  • 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
  • storybook

    Storybook is a frontend workshop for building UI components and pages in isolation. Made for UI development, testing, and documentation.

  • Project mention: Storybook not picking up tailwindcss | dev.to | 2024-04-17

    [Bug]: Configuration with TailwindCss Next.js using Tailwind with Storybook

  • styleguide

    Style guides for Google-originated open-source projects

  • Project mention: [Cpp] Welchen C++-Linter verwendest du? | /r/aufdeutsch | 2023-04-25
  • ruff

    An extremely fast Python linter and code formatter, written in Rust.

  • Project mention: Ask HN: High quality Python scripts or small libraries to learn from | news.ycombinator.com | 2024-04-19

    I think I mention this all the time when this comes up, but I learned the most 'best practices' through using ruff.

    https://docs.astral.sh/ruff/

    I just installed and enabled all the rules by setting

  • api-guidelines

    Microsoft REST API Guidelines

  • Project mention: Mastering API Design: 26 Resources for Software Engineers | dev.to | 2023-12-20

    📝 "Microsoft REST API Guidelines" [link]

  • Primer

    The CSS design system that powers GitHub

  • Project mention: Tremor – The React library to build dashboards fast | news.ycombinator.com | 2023-07-28

    If you are looking for a dashboard system that is written in vanilla JS, I will be open sourcing my DevBoard in the next month or two. You can see it in action at https://devboard.gitsense.com/microsoft/vscode and learn more about the widget system at https://devboard.gitsense.com/microsoft/vscode?board=gitsens... Note the repo that is mentioned in the intro page hasn't been pushed to GitHub yet, but will be soon.

    The server is a very simple node/express app and the front end is written in vanilla javascript. I also use GitHub's primer css (https://github.com/primer/css) and a heavily stripped down version of tabler's css (https://github.com/tabler/tabler)

    Note, DevBoard is more geared towards hackers, so Tremor's is probably a much better fit if you are looking for an out of the box solution.

  • 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
  • react-styleguidist

    Isolated React component development environment with a living style guide

  • Project mention: 45 NPM Packages to Solve 16 React Problems | dev.to | 2023-11-14

    react-styleguidist

  • Rails style guide

    A community-driven Ruby on Rails style guide

  • state-of-the-art-shitcode

    💩State-of-the-art shitcode principles your project should follow to call it a proper shitcode

  • Project mention: State-of-the-Art Shitcode Principles | news.ycombinator.com | 2023-09-24
  • pycodestyle

    Simple Python style checker in one Python file

  • Project mention: Enhance Your Project Quality with These Top Python Libraries | dev.to | 2024-03-18

    PEP8 (pycodestyle): Named after Python’s PEP 8 style guide, this tool checks your Python code against some of the style conventions in PEP 8.

  • ue5-style-guide

    An attempt to make Unreal Engine 4 projects more consistent

  • Project mention: Why does the documentation say to use naming conventions like SKEL, SK, PHYS for Skeleton, Skeletal Mesh, Physics Asset, but all the start content use other abbreviations like SK, SKM and PA instead? | /r/unrealengine | 2023-12-11

    Doesn’t matter what you use, as long as it’s consistant. Epic changed their recommendations for skeletal meshes and skeletons between UE 4 and 5, hence the inconsistency. Michael Allar’s UE style guide is a common, long standing one. Personally I use whatever Epic’s current standard is, or what my team is using. It’s also fine to not prefix stuff, but it helps for consistency and searchability. It’s honestly more important to name things well, with cascading specificity: assetprefix_assettype_assetsubtype00 e.g. SM_Rock_Desert01, SM_Foliage_Bush_Dry_Small01 etc.

  • elixir_style_guide

    A community driven style guide for Elixir

  • clojure-style-guide

    A community coding style guide for the Clojure programming language

  • Project mention: XML is better than YAML | news.ycombinator.com | 2023-09-20

    Fixed link to that style guide entry: https://guide.clojure.style/#opt-commas-in-map-literals

    Per that style guide, the above map would be formatted like this (on HN, just indent by two spaces):

      {:a 1

  • openmoji

    Open source emojis for designers, developers and everyone else!

  • Project mention: OpenMoji: Open-source emojis for designers and developers | news.ycombinator.com | 2024-02-05
  • style-dictionary

    A build system for creating cross-platform styles.

  • Project mention: Syncing Figma Variables and StyleDictionary with GitHub Actions | dev.to | 2023-08-03

    function getStyleDictionaryConfig(brand) { return { source: [`tokens/brands/${brand}/*.json`, 'tokens/globals/**/*.json'], platforms: { /** * Available platforms: https://amzn.github.io/style-dictionary/#/config?id=platform */ web: { transformGroup: 'web', buildPath: `build/web/${brand}/`, files: [ { destination: 'tokens.scss', format: 'scss/variables', }, ], }, }, } } /** * Build the tokens for each brand. * {@see - Example based on https://github.com/amzn/style-dictionary/tree/main/examples/advanced/multi-brand-multi-platform} */ ['microsoft', 'xbox'].map(function (brand) { ['web'].map(function (platform) { const StyleDictionary = StyleDictionaryPackage.extend( getStyleDictionaryConfig(brand), ) StyleDictionary.buildPlatform(platform) }) })

  • Flake8

    flake8 is a python tool that glues together pycodestyle, pyflakes, mccabe, and third-party plugins to check the style and quality of some python code.

  • Project mention: Enhance Your Project Quality with These Top Python Libraries | dev.to | 2024-03-18

    Flake8. This library is a wrapper around pycodestyle (PEP8), pyflakes, and Ned Batchelder’s McCabe script. It is a great toolkit for checking your code base against coding style (PEP8), programming errors (like SyntaxError, NameError, etc) and to check cyclomatic complexity.

  • ladle

    🥄 Develop, test and document your React story components faster.

  • Project mention: PSA: Storybook sends telemetry data, opt-in by default | news.ycombinator.com | 2023-09-21
  • vue-styleguidist

    Created from react styleguidist for Vue Components with a living style guide

  • wemake-python-styleguide

    The strictest and most opinionated python linter ever!

  • swift

    Airbnb's Swift Style Guide (by airbnb)

  • pytorch-styleguide

    An unofficial styleguide and best practices summary for PyTorch

  • go-styleguide

    🏆 Opinionated Styleguide for the Go language

  • 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). The latest post mention was on 2024-04-19.

Styleguide related posts

Index

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

Project Stars
1 javascript 141,540
2 nodebestpractices 96,141
3 storybook 82,727
4 styleguide 36,506
5 ruff 26,234
6 api-guidelines 22,379
7 Primer 12,448
8 react-styleguidist 10,791
9 Rails style guide 6,446
10 state-of-the-art-shitcode 5,286
11 pycodestyle 4,972
12 ue5-style-guide 4,862
13 elixir_style_guide 4,290
14 clojure-style-guide 3,975
15 openmoji 3,731
16 style-dictionary 3,626
17 Flake8 3,252
18 ladle 2,452
19 vue-styleguidist 2,437
20 wemake-python-styleguide 2,418
21 swift 2,256
22 pytorch-styleguide 1,826
23 go-styleguide 1,468
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