Coder Social home page Coder Social logo

ersidharth30 / express-mvc-app-generator Goto Github PK

View Code? Open in Web Editor NEW

This project forked from naveenagarwal/express-mvc-app-generator

0.0 0.0 0.0 364 KB

This cli tool will generate the express app from your ERD diagram or its equivalent JSON representation

JavaScript 100.00%

express-mvc-app-generator's Introduction

express-mvc-app-generator

This cli tool will generate the express app from JSON schema diagram.

Update with Release 1.1.0 onwards

Added strong params for all controllers as middlewares

Release 1.0.0

With this cli tool you can create the full MVC express app with sequelize ORM. Simply define the schema in the JSON format and you are all set.

Installation
npm i -g @naveen.agarwal/express-mvc-app-generator
JSON schema sample
{
    "tables": [
        {
            "name" : "users",
            "attributes" : [
                {
                    "name" : "username",
                    "type" : "string"
                },
                {
                    "name" : "accountNumber",
                    "type" : "bigint"
                },
                {
                    "name" : "aboutText",
                    "type" : "text"
                }
            ]
        },
        {
            "name" : "orders",
            "attributes" :[
                {
                    "name" : "userId",
                    "type" : "integer"
                },
                {
                    "name" : "name",
                    "type" : "string"
                }
            ]
        },

        {
            "name" : "line_items",
            "attributes" : [
                {
                    "name" : "orderId",
                    "type" : "integer"
                },
                {
                    "name" : "productId",
                    "type" : "integer"
                },
                {
                    "name" : "price",
                    "type" : "double"
                }
            ]
        },
        {
            "name" : "products",
            "attributes" : [
                {
                    "name" : "name",
                    "type" : "string"
                },
                {
                    "name" : "discription",
                    "type" : "text"
                }
            ]
        }

    ]
}

Note - "type" should be same, as it is understood by sequlelize-cli tool. For more information, refer here.

Generate MVC Express Application
express-boot --name <you application name> --schema </full/path/to/schema.json>

You will see an app created with a folder name same as your application name in above command.

Run the followiung commands post app creation:

cd <you application name>

// Set the database name for your application in
// src/config/config.js then create database.
npx sequelize-cli db:create

// Now run the migrations to generate the tables
npx sequelize-cli db:migrate

// Run the application, default port is 3000
// Routes available at '/api/<resource>'
// Check src/app/controllers/index.js for generated resource routes
node src/index.js
In schema.json

Table names will be created as per sequelize standards. For example

users => Users,
line_items => LineItems,
products => Products,
orders => Orders

Table Names in database.

alt text

Whats coming?

  • Better template defaults in logger, middlewares, constants, config etc.
  • Strong params implementation (Added with release 1.1.0) mouted at /api-docs
  • Swagger specs (Added with release 2.0.0)
  • Integration tests for controller
  • Integration tests for service

express-mvc-app-generator's People

Contributors

naveenagarwal avatar naveenagarwalsrijan avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.