console

Oxide Web Console (by oxidecomputer)

Console Alternatives

Similar projects and alternatives to console

  1. Next.js

    2,410 console VS Next.js

    The React Framework

  2. SurveyJS

    SurveyJS: Build JSON-Driven Surveys and Forms with Full Data Control. Add the SurveyJS UI components to your JS app (React/Angular/Vue3). Securely collect and analyze data without sending it to 3rd-party servers. Fully customizable, works with any backend, and ideal for data-heavy apps. Learn more.

    SurveyJS logo
  3. React

    1,997 console VS React

    The library for web and native user interfaces.

  4. Tailwind CSS

    1,546 console VS Tailwind CSS

    A utility-first CSS framework for rapid UI development.

  5. msw

    175 console VS msw

    Industry standard API mocking for JavaScript.

  6. pkg

    97 console VS pkg

    Discontinued Package your Node.js project into an executable

  7. unocss

    65 console VS unocss

    The instant on-demand atomic CSS engine.

  8. hubris

    36 console VS hubris

    A lightweight, memory-protected, message-passing kernel for deeply embedded systems.

  9. Stream

    Stream - Scalable APIs for Chat, Feeds, Moderation, & Video. Stream helps developers build engaging apps that scale to millions with performant and flexible Chat, Feeds, Moderation, and Video APIs and SDKs powered by a global edge network and enterprise-grade infrastructure.

    Stream logo
  10. dependabot-core

    🤖 Dependabot's core logic for creating update PRs.

  11. orval

    23 console VS orval

    orval is able to generate client with appropriate type-signatures (TypeScript) from any valid OpenAPI v3 or Swagger v2 specification, either in yaml or json formats. 🍺

  12. bookshop

    20 console VS bookshop

    📚 A component development workflow for static websites.

  13. play.core

    10 console VS play.core

    ASCII Playground

  14. omicron

    Omicron: Oxide control plane

  15. manifold-api

    Manifold API Client Bindings

  16. rvf

    3 console VS rvf

    Easy form validation and state management for React and Remix

  17. cio

    1 console VS cio

    Discontinued CIO Women Magazine is a result of coveted efforts of an ambitious leadership. With a diversified plethora of industry magazines, CIO Women Magazine offers its readers an opportunistic approach to start a new venture. https://ciowomenmagazine.com/ (by oxidecomputer)

  18. oxide.ts

    3 console VS oxide.ts

    TypeScript client for the Oxide API (by oxidecomputer)

  19. meetup-contacts-app-2021

    Modern, structured React application demo with pages, services. An Opinionated React App template for large projects.

  20. tailwind-cli-extra

    Tailwind CSS standalone CLI bundled with daisyUI

  21. third-party-api-clients

    A place for keeping all our generated third party API clients.

  22. InfluxDB

    InfluxDB – Built for High-Performance Time Series Workloads. InfluxDB 3 OSS is now GA. Transform, enrich, and act on time series data directly in the database. Automate critical tasks and eliminate the need to move data externally. Download now.

    InfluxDB logo
NOTE: The number of mentions on this list indicates mentions on common posts plus user suggested alternatives. Hence, a higher number means a better console alternative or higher similarity.

console discussion

console reviews and mentions

Posts with mentions or reviews of console. We have used some of these posts to build our list of alternatives and similar projects. The last one was on 2025-07-30.
  • Our $100M Series B
    2 projects | news.ycombinator.com | 30 Jul 2025
    > To "run cloud?"

    I agree that's a bit awkwardly phrased, let me send in a patch for that.

    > Does this mean treating your own servers like "serverless?" Does it mean running Kubernetes? Is this primarily for people who want to self-host LLMs?

    Not exactly any of that. We let you treat an entire rack as a single pool of resources, spinning up virtual machines that our control plane manages for you. Think "VPS provider but you own it." There's an API, but if you want to see what our console looks like, you can poke around with a demo here: https://console-preview.oxide.computer/

  • Oxide Cloud Computer. No Cables. No Assembly. Just Cloud
    3 projects | news.ycombinator.com | 23 Mar 2024
    >https://console-preview.oxide.computer/

    That's pretty cool! The design language is a nice touch for sure.

  • Storybook 8
    5 projects | news.ycombinator.com | 13 Mar 2024
    I've used Storybook during development for a while now and the use case you present is how the Storybook is pitched. I actually agree about the simplicity of discovering the components. What I disagree with, though, is that I can't see value of "develop & test your UI independently from your app" part. It forces me to decouple the state from a component and this in turn adds unnecessary complexity to the architecture.

    I'm going to use Oxide console [1] as an example because it has a really good setup of MSW + OpenAPI autogenerated mocks (which means that it doesn't need any complete backend, just a defined contract).

    Consider this fairly simple page [2]. If I'm using the Storybook pattern, I'm keeping all of the state outside of the component, which means I now have to manually memoize every single variable defined before the return to make sure that the component doesn't do any unnecessary re-renders. This includes `intervalPicker`, `commonProps`, `setFilterId`, every return of `useDateTimeRangePicker`. With MSW I have benefits not needing the API, testing in real production app, using the same exact mocks for unit tests and development.

    [1]: https://github.com/oxidecomputer/console

    [2]: https://github.com/oxidecomputer/console/blob/main/app/pages...

  • Tailwind CSS v4.0.0 Alpha
    7 projects | news.ycombinator.com | 6 Mar 2024
  • Remix Vite Is Now Stable
    5 projects | news.ycombinator.com | 21 Feb 2024
    SPA mode (what I assume you mean by BFF mode) is brand new, so almost nobody has used it. However, a close example would be the Oxide web console, which we build as an SPA because we want to serve it as static assets from a Rust backend. It's very close to your suggested stack: React + React Router + Tanstack query + zustand, though importantly we also use React Router's loaders to give the app a better-than-SPA feel on navigations. I do plan on moving it to Remix SPA mode when I get a chance, but like I said the result should be very similar so it's not that high a priority for me. If I were starting from scratch I'd probably use Remix SPA.

    Repo: https://github.com/oxidecomputer/console/

    Live demo here with in-browser MSW mock API: https://oxide-console-preview.vercel.app

  • Oxide: The Cloud Computer
    9 projects | news.ycombinator.com | 26 Oct 2023
    VPS providers are nice, but they don't provide the same cloud-level capabilities that Oxide offers. Check out the console to get an idea of what I mean (this is a demo with mock data): https://oxide-console-preview.vercel.app/
  • Mock Service Worker(msw) releases 2.0
    8 projects | news.ycombinator.com | 23 Oct 2023
    Yeah, basically. We do it with a function call where the argument to the function is that interface representing all the API endpoints. `makeHandlers` handles parsing path params, query params, and request body and passes them to each endpoint handler. So the runtime validation of request bodies is also generated — we generate a zod schema for each request body in the OpenAPI definition and use it to parse the actual request body that comes in.

    big function call https://github.com/oxidecomputer/console/blob/bd65b9da7019ad...

    automatic body parsing and argument passing: https://github.com/oxidecomputer/console/blob/bd65b9da7019ad...

    When an endpoint gets added to the spec, we can rerun the generator and get type errors in the `makeHandlers` telling us endpdoints are missing.

  • A note from our sponsor - SurveyJS
    surveyjs.io | 23 Dec 2025
    Add the SurveyJS UI components to your JS app (React/Angular/Vue3). Securely collect and analyze data without sending it to 3rd-party servers. Fully customizable, works with any backend, and ideal for data-heavy apps. Learn more. Learn more →

Stats

Basic console repo stats
12
193
9.3
4 days ago

Sponsored
SurveyJS: Build JSON-Driven Surveys and Forms with Full Data Control
Add the SurveyJS UI components to your JS app (React/Angular/Vue3). Securely collect and analyze data without sending it to 3rd-party servers. Fully customizable, works with any backend, and ideal for data-heavy apps. Learn more.
surveyjs.io