Skip to content

Latest commit

 

History

History
44 lines (29 loc) · 1 KB

File metadata and controls

44 lines (29 loc) · 1 KB

Simple Framework JS

A simple backend framework using js and mysql for Node.js.

Features

  • Minimal setup and clean syntax
  • Built-in routing
  • MySQL database support
  • Designed for learning and lightweight APIs
import { SimpleFramework } from "simple_framework_js";

const app = new SimpleFramework();

app.get("/", (req, res) => {
  res.send("Hello World");
});

app.listen(3000);

Installation

This is a Node.js module available through the npm registry.

Before installing, download and install Node.js. Node.js 20 or higher is required.

If this is a brand new project, make sure to create a package.json first with the npm init command.

Installation is done using the npm install command:

npm i simple_framework_js

License

MIT