New Case Study:See how Anthropic automated 95% of dependency reviews with Socket.Learn More
Socket
Sign inDemoInstall
Socket

data-stub

Package Overview
Dependencies
Maintainers
1
Versions
19
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

data-stub

generate mysql database stub

  • 1.3.6
  • latest
  • Source
  • npm
  • Socket score

Version published
Weekly downloads
11
increased by37.5%
Maintainers
1
Weekly downloads
 
Created
Source

DATA STUB

NPM version Build Status codecov

Build data stub from database for programer

Installation

yarn add data-stub
npx data-stub -f ls

Configuration

set config at workdir with name: app.json

{
  "mysql": {
    "host": "127.0.0.1",
    "user": "ketchup",
    "password": "123456",
    "database": "ketchup",
    "port": 3306,
    "charset": "utf8"
  },
  "prefix": "tb",
  "data-stub": {
    "exclude": ["tb_name"]
  }
}

Instructions

data-stub -f ls list table in the specific database

data-stub -t tableName show result of the tableName

data-stub -f generate -o outputDir generate data stub to outputDir

Target

// Code generated by data-stub. DO NOT EDIT.
// source: tableName [fileName]

var BaseModel = require('../model')

var model = {
  table: 'tableName',
  fields: {
    'columnName': {
      type: String,
      name: 'columnName',
      comment: 'comment from db',
    }
  }
}
module.exports = new BaseModel(model)

## Usage

```shell
Usage: bin.js -t <table> -o <output> -p <print> -f <functionName> -c
<configPath>

选项:
  --version       显示版本号                                              [布尔]
  --table, -t     要生成的数据表                                    [默认值: ""]
  --print, -p     是否打印                                   [默认值: "console"]
  --function, -f  执行的功能[generate, ls, table]              [默认值: "table"]
  --config, -c    配置文件的位置                            [默认值: "app.json"]
  --output, -o    输出目录                                      [默认值: "dist"]
  --language, -l  输出语言
                     [可选值: "javascript", "typescript"] [默认值: "javascript"]
  --help          显示帮助信息                                            [布尔]

License

MIT

FAQs

Package last updated on 22 Apr 2020

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc