Giter VIP home page Giter VIP logo

movie-watcher's Introduction

Movie Watcher

Backend for an application that lets you track how many times you've watched a movie. It serves as a simple POC for doing ES/CQRS in NestJS. I initially intended to use some functional programming (i.e. the "functional core/imperative shell" pattern), but NestJS doesn't really lend itself to that.

Tasks

  • Add dependencies and code structure
  • Add an endpoint to add movies to the database
  • Implement an event store
  • Add an endpoint to record watching a movie
  • Add an endpoint to retrieve data about a movie, including how many times it has been watched
    • Implement computing the entity state from the event store
  • Add an endpoint to retrieve data about a user, including how many movies they have watched
    • Implement projections
    • Add a separate movies table
  • Add event factory to the event publisher, so it efficiently handles different event types

Notes

  • I'm just going to keep track of users by arbitrary strings; there will be no authentication or authorization in this app.
  • I will use Flyway to manage the database schema, and I will use Knex as the ORM.
  • I will use Zod for validation, instead of Nest's built-in validation.

Database

  • The user accessing the database needs to have REPLICATION privilege. To add this privilege, connect as the admin user and run ALTER ROLE ${DATABASE_USER} WITH REPLICATION;.

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.