Need to build an API ? you dont need to code manually anymore. This is a Free tool to generate a ready to use NodeJS API that you could import into VS-Code or any IDE that you preferred. The process is simple Type the script -> Generate -> Extract -> Import
Controller:repo:<repo-type>-<entity_name>(parameter1,parameter2,parameter...)
You can copy paste the script below. it is the simplest version; it will generate API CRUD with DB POSTGRES as the repository for the entity and parameters that you want
Controller:employee(id, first_name, last_name, email, join_date)
Script below will generate API CRUD with DB Mysql as a repository.
Controller:repo:dbmysql-employee(id, first_name, last_name, email, join_date)
Script below will generate API CRUD with REST as a repository
Controller:repo:rest-product(id, product_name, product_type, stock, expired_date)
Based on what you need, you can generate 5 types of repo
repo:dbpostgres, repo:dbmysql, repo:dboracle, repo:dbmongo, repo:rest