katungi / backframe.js

A JS/TS framework for rapid development and deployment of APIs and Backends

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Backframe.js - The backend framework for rapid development and deployment of APIs/Backends

This is a WIP. Still in active development

Getting started

Here are a few things to note about backframe before getting started:

  • Backframe does not support commonjs modules. Only esmodules. That means you have to use:
    // Required in backframe
    import * from "something"
    instead of
    // not supported
    const pkg = require("something");
  • Backframe uses file-system based routing. This means you don't have to declare redundant routing patterns in your files. Simply create a new file and that automatically corresponds to a route. All routes are housed in the src/routes directory
  • Backframe is still in active development and a lot of features may be buggy or simply not work at all

To create a new backframe app, run

npx @backframe/create-bf

# or
pnpx @backframe/create-bf

The CLI will prompt you for certain values and for a simple getting started example, select whether you'd like to use JS or TS then make sure to select the CREATE MINIMAL STARTER APP option. The other options have not been implemented yet

About

A JS/TS framework for rapid development and deployment of APIs and Backends

License:MIT License


Languages

Language:TypeScript 94.4%Language:JavaScript 4.7%Language:CSS 0.4%Language:HTML 0.3%Language:Shell 0.2%