Browse Source

Add documentation

Include README and FAQs.
master
TheoryOfNekomata 3 months ago
parent
commit
7bfc40db67
2 changed files with 32 additions and 0 deletions
  1. +7
    -0
      README.md
  2. +25
    -0
      docs/01-faqs.md

+ 7
- 0
README.md View File

@@ -0,0 +1,7 @@
# `yasumi`

**HATEOAS-first backend framework**

This is a proposed solution to most Web frameworks that will hopefully inspire other solutions.

See [docs folder](./docs) for more details.

+ 25
- 0
docs/01-faqs.md View File

@@ -0,0 +1,25 @@
# Frequently Asked Questions

> Why another (JavaScript) framework?

Yes.

> No, but seriously? Why JavaScript?

I find it comfortable to create stuff in TypeScript. However, the reader must pay attention to the underlying architecture instead of the specifics of the platform being implemented on.

> Then why another framework?

Most frameworks focus on the routing and the logic side of things. This is reasonable for most applications. However, the benefits of hypermedia becomes an afterthought, wherein attempts to produce rich structured data become ignored (as compliance with Web standards is not a requirement for building Web services, however developers comply with some aspects of REST in order to create some rudimentary RPC service).

> What's the point then?

The goal of the framework is to empower developers on focusing on the business logic while not being hindered by considering proper REST (and ultimately HATEOAS) guidelines on the resulting implementation.

> What is the expected output of this project?

The choices include implementing a plugin to complement popular frameworks, as well as an entirely new framework with adapters to various common components of Web services (such as persistent storage).

> What's the timeline for this project?

Indefinite. However I shall provide milestones if necessary for certain periods of time.

Loading…
Cancel
Save