quickly develop restful API use NodeJS.
Step1
$ mkdir my-project &&cd my-project $ npm init -y
$ yarn add @apacejs/cliStep2
$ touch router.js
edit content
constexpress=require('express')constapp=express.Router()app.get('/',(req,res)=>res.json({greet: 'hello Apace'}))module.exports=appStep3
$ npx apace devopen browser and write: localhost:8000, then you will see a simple restful api.
Someone told me: The best framework is just business code.