Dark Souls CRUD Arena - The Prisoner Approach

This page summarizes the projects mentioned and recommended in the original post on dev.to

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.
www.influxdata.com
featured
SaaSHub - Software Alternatives and Reviews
SaaSHub helps you find the best software and product alternatives
www.saashub.com
featured
  1. dark-souls-crud-arena-prisoner

    crud practice, down to the studs

    Here is the link to the repo: dark-souls-crud-arena-prisoner

  2. 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
  3. pgadmin4

    pgAdmin is the most popular and feature rich Open Source administration and development platform for PostgreSQL, the most advanced Open Source database in the world.

    The first order of business was to set up a data layer which included the schema and local database instance for making updates directly via SQL queries. I selected Postgres because it is what I've used in the past in school projects, but hadn't touched it in a long time. It's also open source, which I try to bias towards whenever possible. I installed Postgres via Homebrew. I also installed PgAdmin, but didn't end up using it. I preferred interacting with the database via the CLI. The same applied for my prod RDS instance.

  4. webpack

    A bundler for javascript and friends. Packs many modules into a few bundled assets. Code Splitting allows for loading parts of the application on demand. Through "loaders", modules can be CommonJs, AMD, ES6 modules, CSS, Images, JSON, Coffeescript, LESS, ... and your custom stuff.

    to then serve to the browser. If I was using something like Vite or Webpack I would have gotten this handling for free.

  5. vite

    Next generation frontend tooling. It's fast!

    to then serve to the browser. If I was using something like Vite or Webpack I would have gotten this handling for free.

  6. HomeBrew

    🍺 The missing package manager for macOS (or Linux)

    In past personal projects, and in my most recent role, I've used Docker for dependency management to avoid the "works on my machine" scenario. I also just like keeping dependencies off my machine, but for this project I opted not to use containers given my lack of dependencies. I used Homebrew for all my needs :).

  7. SaaSHub

    SaaSHub - Software Alternatives and Reviews. SaaSHub helps you find the best software and product alternatives

    SaaSHub logo
NOTE: The number of mentions on this list indicates mentions on common posts plus user suggested alternatives. Hence, a higher number means a more popular project.

Suggest a related project

Related posts

  • My Go-To Tools for Building Chrome Extensions

    2 projects | dev.to | 19 Jun 2025
  • Show HN: Zuni (YC S24) – AI Copilot for the Browser

    1 project | news.ycombinator.com | 18 Apr 2025
  • Extension Framework with Dev Mode, HMR, MV2/MV3, Chrome/Firefox/Edge/Safari

    1 project | news.ycombinator.com | 12 Mar 2025
  • Extract metadata of paper and export it to Notion DB

    3 projects | dev.to | 17 Dec 2024
  • Transform plugin works but fails type check

    2 projects | /r/vuejs | 3 Jun 2023

Did you know that JavaScript is
the 3rd most popular programming language
based on number of references?