developer-tools

Open-source projects categorized as developer-tools

Top 23 developer-tool Open-Source Projects

  • puppeteer

    Node.js API for Chrome

    Project mention: HTML to PDF renderers: A simple comparison | dev.to | 2024-03-26

    HTML to PDF conversion is a common requirement in modern web applications. It allows users to save web pages, reports, and other content in a format that is easy to share and print. There are many libraries and services available for converting HTML to PDF, each with its own strengths and weaknesses. In this article, we will compare some of the most popular HTML to PDF renderers in Node.js, including Puppeteer, Playwright, node-html-pdf, and Onedoc.

  • Postwoman

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

    Project mention: 7 Essential Hoppscotch Features to Skyrocket API Development Productivity 🚀 | dev.to | 2024-03-18

    For the past five years, Hoppscotch 🛸 has been quietly transforming the way developers tackle their work in the API development world. Our mission has always been to make developer's lives easier and their workflows smoother, all from the comfort of their browser. And guess what? We might have evolved and gotten strong, but we are staying true to our goal of simplifying things for developers everywhere. Today, we're here to spill the beans on the simple yet powerful productivity hacks that Hoppscotch offers. Get ready to level up your development game in ways you never imagined.

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

  • LocalStack

    💻 A fully functional local AWS cloud stack. Develop and test your cloud & Serverless apps offline

    Project mention: Let's build a screenshot API | dev.to | 2024-03-24

    Later you can use any S3 compatible storage because the code I write will still work, but for testing purposes on my local machine, I will use LocalStack:

  • ShellCheck

    ShellCheck, a static analysis tool for shell scripts

    Project mention: DevSecOps with AWS- IaC at scale - Building your own platform - Part 1 | dev.to | 2024-03-21

    ... #************************** Terraform ************************************* ARG TERRAFORM_VERSION=1.7.3 RUN set -ex \ && curl -O https://releases.hashicorp.com/terraform/${TERRAFORM_VERSION}/terraform_${TERRAFORM_VERSION}_linux_amd64.zip && unzip terraform_${TERRAFORM_VERSION}_linux_amd64.zip -d /usr/local/bin/ RUN set -ex \ && mkdir -p $HOME/.terraform.d/plugin-cache && echo 'plugin_cache_dir = "$HOME/.terraform.d/plugin-cache"' > ~/.terraformrc #************************* Terragrunt ************************************* ARG TERRAGRUNT_VERSION=0.55.1 RUN set -ex \ && wget https://github.com/gruntwork-io/terragrunt/releases/download/v${TERRAGRUNT_VERSION}/terragrunt_linux_amd64 -q \ && mv terragrunt_linux_amd64 /usr/local/bin/terragrunt \ && chmod +x /usr/local/bin/terragrunt #*********************** Terramate **************************************** ARG TERRAMATE_VERSION=0.4.5 RUN set -ex \ && wget https://github.com/mineiros-io/terramate/releases/download/v${TERRAMATE_VERSION}/terramate_${TERRAMATE_VERSION}_linux_x86_64.tar.gz \ && tar -xzf terramate_${TERRAMATE_VERSION}_linux_x86_64.tar.gz \ && mv terramate /usr/local/bin/terramate \ && chmod +x /usr/local/bin/terramate #*********************** tfsec ******************************************** ARG TFSEC_VERSION=1.28.5 RUN set -ex \ && wget https://github.com/aquasecurity/tfsec/releases/download/v${TFSEC_VERSION}/tfsec-linux-amd64 \ && mv tfsec-linux-amd64 /usr/local/bin/tfsec \ && chmod +x /usr/local/bin/tfsec \ && terragrunt --version #**********************Terraform docs ************************************ ARG TERRRAFORM_DOCS_VERSION=0.17.0 RUN set -ex \ && curl -sSLo ./terraform-docs.tar.gz https://terraform-docs.io/dl/v${TERRRAFORM_DOCS_VERSION}/terraform-docs-v${TERRRAFORM_DOCS_VERSION}-$(uname)-amd64.tar.gz \ && tar -xzf terraform-docs.tar.gz \ && chmod +x terraform-docs \ && mv terraform-docs /usr/local/bin/terraform-docs #********************* ShellCheck ***************************************** ARG SHELLCHECK_VERSION="stable" RUN set -ex \ && wget -qO- "https://github.com/koalaman/shellcheck/releases/download/${SHELLCHECK_VERSION?}/shellcheck-${SHELLCHECK_VERSION?}.linux.x86_64.tar.xz" | tar -xJv \ && cp "shellcheck-${SHELLCHECK_VERSION}/shellcheck" /usr/bin/ \ && shellcheck --version ...

  • devdocs

    API Documentation Browser

    Project mention: The Ultimate Roadmap to a Full-Stack Developer | dev.to | 2024-02-22

    DevDocs - Aggregates documentation from various sources into a single, easy-to-navigate interface, covering frontend and backend technologies. DevDocs

  • lapce

    Lightning-fast and Powerful Code Editor written in Rust

    Project mention: Lapce | news.ycombinator.com | 2024-02-18

    Apparently, currently based on width: https://github.com/lapce/lapce/commit/87e0fc06f1862d9124d3fe...

  • Files

    Building the best file manager for Windows

    Project mention: Files | news.ycombinator.com | 2024-03-18
  • 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.

  • httpie

    🥧 HTTPie CLI — modern, user-friendly command-line HTTP client for the API era. JSON support, colors, sessions, downloads, plugins & more. (by httpie)

    Project mention: Bruno | news.ycombinator.com | 2024-03-09

    There is also HTTPie which I've mostly been using for its excellent `http` CLI as a modern replacement for curl.

    However I recently learned that it also has web and desktop client apps which are pretty great too!

    https://httpie.io/

  • appsmith

    Platform to build admin panels, internal tools, and dashboards. Integrates with 25+ databases and any API.

    Project mention: A list of SaaS, PaaS and IaaS offerings that have free tiers of interest to devops and infradev | dev.to | 2024-02-05

    appsmith — Low code project to build admin panels, internal tools, and dashboards. Integrates with 15+ databases and any API.

  • streamlit

    Streamlit — A faster way to build and share data apps.

    Project mention: Show HN: Buefy Web Components for Streamlit | news.ycombinator.com | 2024-03-04

    While building dashboards in Streamlit, I found myself really missing Buefy's (Bulma) modern web components.

    Specially due to the inability to add new values to Streamlit's multiselect [1], some missing controls like a polished image carousel [2] or a highly customizable data table.

    Long story short, we put together streamfy (Streamlit + Buefy) as an MIT licensed project in GitHub to bring Buefy to Streamlit.

    Demo: https://streamfy.streamlit.app

    All the form components are implemented, missing half of other non-form UX components. There is plenty of room for PRs, testing, feedback, documentation, example, etc.

    Please send issues and contributions to GitHub project [3] and general feedback to X / Twitter [4]

    Thanks!

    [1] https://github.com/streamlit/streamlit/issues/5348

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

  • surrealdb

    A scalable, distributed, collaborative, document-graph database, for the realtime web

    Project mention: Task tracker application using NextJS and SurrealDB | dev.to | 2024-01-21

    In this article, I have shared how I have built a simple task-tracking full-stack application using NextJS and SurrealDB.

  • Refine

    A React Framework for building internal tools, admin panels, dashboards & B2B apps with unmatched flexibility.

    Project mention: 10 Methods for Vertical Alignment Using CSS | dev.to | 2024-03-27
  • DevToys

    A Swiss Army knife for developers.

    Project mention: Set Up MacOS for Development Productivity | dev.to | 2023-08-27
  • responsively-app

    A modified web browser that helps in responsive web development. A web developer's must have dev-tool.

    Project mention: 10 Game-Changing Tools You should Bookmark Now😎🔖 | dev.to | 2024-01-19

    ⭐ Responsively on GitHub 👉: Responsively

  • nnn

    n³ The unorthodox terminal file manager

    Project mention: Directory navigation on Helix | /r/HelixEditor | 2023-12-06

    If you want a file full browser experience choose nnn: https://github.com/jarun/nnn . If you have a desktop file for Helix you can use the Gnome Files program to make all your programming language files open in Helix.

  • eruda

    Console for mobile browsers

    Project mention: A table that looks good on mobile and desktop | news.ycombinator.com | 2023-07-05

    Could you inject it as a bookmarklet?

    If not, you could probably just paste it into Eruda (https://eruda.liriliri.io/)

  • Hack

    A typeface designed for source code

    Project mention: What font are you using and why? | /r/vscode | 2023-12-06

    I used to use and really like Hack: https://sourcefoundry.org/hack/

  • d2

    D2 is a modern diagram scripting language that turns text to diagrams.

    Project mention: NMAP-formatter: convert NMAP results to HTML, CSV, JSON, graphviz (dot), SQLite | news.ycombinator.com | 2024-01-26
  • skaffold

    Easy and Repeatable Kubernetes Development

    Project mention: You've just inherited a legacy C++ codebase, now what? | news.ycombinator.com | 2024-02-29

    A nice middle ground is using a tool like Google's Skaffold, which provides "Bazel-like" capabilities for composing Docker images and tagging them based on a number of strategies, including file manifests. In my case, I also use build args to explicitly set versions of external dependencies.

    While I am in a Typescript environment with this setup at the moment, my personal experience that Skaffold with Docker has a lighter implementation and maintenance overhead than Bazel. (You also get the added benefit of easy deployment and automatic rebuilds.)

    I quite liked using Bazel in a small Golang monorepo, but I ran into pain when trying to do things like include third-party pre-compiled binaries in the Docker builds, because of the unusual build rules convention. The advantage of Skaffold is it provides a thin build/tag/deploy/verify layer over Docker and other container types. Might be worth a look!

    Kudos to the Google team building it! https://skaffold.dev

  • kaniko

    Build Container Images In Kubernetes

    Project mention: Using AKS for hosting ADO agent and using it to build and test as containers | /r/azuredevops | 2023-05-09

    If all you need to do is build container, you can use https://github.com/GoogleContainerTools/kaniko

  • dvc

    🦉 ML Experiments and Data Management with Git

    Project mention: Why bad scientific code beats code following "best practices" | news.ycombinator.com | 2024-01-06

    What you’re describing sounds like DVC (at a higher-ish—80%-solution level).

    https://dvc.org/

    See pachyderm too.

  • zeal

    Offline documentation browser inspired by Dash

    Project mention: DevDocs | news.ycombinator.com | 2024-01-12

    There's also Zeal (https://zealdocs.org/) which is basically the same as Dash but open source and runs on non-Mac devices.

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

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-03-27.

developer-tools related posts

Index

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

Project Stars
1 puppeteer 86,491
2 Postwoman 59,677
3 LocalStack 51,790
4 ShellCheck 34,757
5 devdocs 33,649
6 lapce 31,844
7 Files 31,663
8 httpie 31,560
9 appsmith 31,240
10 streamlit 30,948
11 lighthouse 27,749
12 surrealdb 24,932
13 Refine 23,244
14 DevToys 22,630
15 responsively-app 21,605
16 nnn 18,043
17 eruda 17,140
18 Hack 16,103
19 d2 15,607
20 skaffold 14,605
21 kaniko 13,712
22 dvc 13,032
23 zeal 11,007
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.
www.influxdata.com