@lmiller1990/node-mvc

The Node.js MVC framework you never had but always deserved.

Usage no npm install needed!

<script type="module">
  import lmiller1990NodeMvc from 'https://cdn.skypack.dev/@lmiller1990/node-mvc';
</script>

README

TODO: Name

The Node.js MVC framework you never had but always deserved.

Features

Rails-like syntax Test environment out of the box Some other stuff Lots of extra methods for String, Array etc.

Interesting Examples

const BaseEntity = require("./models/base-entity.js")

class Animal extends BaseEntity {}

const animal = await Animal.create({ name: "Doggo" })

console.log(animal) //=> { id: 1, name: "Doggo" }