Giter Club home page Giter Club logo

auto-crud's Introduction

Auto-CRUD

Auto-CRUD is a Node.js project that generates REST APIs from JSON configurations. It relies on Sequelize and Express as its dependencies. Follow the steps below to get started:

Installation

  • Install project dependencies:

    • Run: npm install
  • Build project

    • npm run build
  • Install this project globally

    • Run : npm install -g .

Configuration

Before generating REST APIs, you need to create a JSON configuration file. Here's an example configuration:

{
"projectDbPath": "/path/to/your/database.db",
"models": [
  {
    "name": "User",
    "attributes": [
      { "name": "firstName", "type": "string" },
      { "name": "lastName", "type": "string" },
      { "name": "email", "type": "string", "unique": true },
      { "name": "password", "type": "string" }
    ],
    "associations": [
      {
        "type": "belongsTo",
        "targetModel": "Role",
        "as": "role"
      }
    ],
    "routes": [
      { "url": "/api/users", "method": "createModel" },
      { "url": "/api/users/:id", "method": "updateModel" },
      { "url": "/api/users/:id", "method": "patchModel" },
      { "url": "/api/users/", "method": "getModels" },
      { "url": "/api/users/:id", "method": "getModel" },
      { "url": "/api/users/:id/role", "method": "getRelatedModel", "relation": "role" }
    ],
    "controller_dir_name": "user",
    "model_dir_name": "users",
    "routes_dir_name": "users"
  },
  {
    "name": "Role",
    "attributes": [
      { "name": "name", "type": "string" },
      { "name": "description", "type": "text" }
    ],
    "associations": [],
    "routes": [
      { "url": "/api/roles", "method": "createModel" },
      { "url": "/api/roles/:id", "method": "updateModel" },
      { "url": "/api/roles/:id", "method": "patchModel" },
      { "url": "/api/roles/", "method": "getModels" },
      { "url": "/api/roles/:id", "method": "getModel" }
    ],
    "controller_dir_name": "role",
    "model_dir_name": "roles",
    "routes_dir_name": "roles"
  }
]
}


Usage

  • rest {CONFIG_FILE_PATH}

Replace {CONFIG_FILE_PATH} with the path to your JSON configuration file.

Now, you can easily create RESTful APIs for your project using Auto-CRUD. Enjoy!

auto-crud's People

Contributors

riaj03 avatar

Stargazers

Naimur Rahman avatar Sharfin Jahan Sakib avatar Twaha Mukammel avatar

Watchers

 avatar

Forkers

sabbirahmed

auto-crud's Issues

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.