Auto Build API

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 code is easy to read and configurable. It will also automatically generate unit tests and API Documentation for you. The process is simple Type the script -> Generate -> Extract -> Import

Script Syntax

repo:<repo-type>-<entity_name>(parameter1,parameter2,parameter...)

Script Sample

You can copy paste the script below, it will create CRUD API with Postgres DB as its repository for the entity and parameters that you defined

employee(id, first_name, last_name, email, join_date)

script below will generate CRUD API with Mysql DB as the repository

repo:dbmysql-employee(id, first_name, last_name, email, join_date)

script below will generate CRUD API with REST repository

repo:rest-product(id, product_name, product_type, stock, expired_date)

Based on what you need, you can customize the script to generate 5 types of repo

repo:dbpostgres, repo:dbmysql, repo:dboracle, repo:dbmongo, repo:rest