Go to file
2020-10-05 11:42:16 -05:00
cli/src Start CLI and db schema queries 2020-10-05 11:42:16 -05:00
di revert container global changes 2020-09-05 10:21:18 -05:00
lib/src Start CLI and db schema queries 2020-10-05 11:42:16 -05:00
orm/src Start CLI and db schema queries 2020-10-05 11:42:16 -05:00
.env account for :params and * wildcards in complex route match 2020-07-29 23:25:30 -05:00
.gitignore db structure abstraction; async collection; update/insert queries; model saving 2020-07-06 09:53:03 -05:00
README.md basic readme 2020-08-17 09:50:10 -05:00
TODO.txt Start basic CLI framework 2020-09-16 10:28:38 -05:00
tsconfig.json Fix DI bugs; implement general logging service 2020-06-17 09:48:01 -05:00

Daton Monorepo

Daton is my work-in-progress application framework for Deno. It's written from scratch, using native Deno libraries.

This library is a reincarnation of my Flitter framework for Node.js.

This library is organized as a mono-repo, and contains the following components:

  • DI
    • Daton ships with its own type-metadata based inversion of control container, which is used to manage services and the application lifecycle.
    • It does this by injecting dependencies into class constructors using type-hints added to the metadata by TypeScript at compile time
  • Library
    • The Daton library contains common elements used in Daton, such as:
      • Collections and AsyncCollections
      • Classes for interacting with HTTP requests, responses, and cookies
      • Logic for the application and lifecycle units
      • Units for controllers, middleware, route definitions, &c.
  • ORM
    • Daton also uses its own PostgreSQL ORM, which is ES6 native, and support a rich feature set, including:
      • Class-based models
      • Rich, fluent query builders
      • Model relations, and nested relations, with eager loading
      • Query result iterators, and custom query operators
  • The work-in-progress app template