1.0.73 • Published 4 years ago

erisl-crm-cli v1.0.73

Weekly downloads
152
License
ISC
Repository
github
Last release
4 years ago

ERISL CRM CLI

命令

  • erisl-crm-cli init 初始化项目
  • erisl-crm-cli create 创建模板页面
  • erisl-crm-cli delete 删除模板页面
  • erisl-crm-cli dev 开发模式
  • erisl-crm-cli start 生产模式
  • erisl-crm-cli build 编译
  • erisl-crm-cli export 导出静态页面

参数

  • dictionary: 在 export/init 的时候使用, 默认 out, 譬如: erisl-crm-cli init|export dictionary=webapp 或者 erisl-crm-cli init|export webapp
  • controller: 在 create/delete 的时候使用, 必须有。譬如: erisl-crm-cli create|delete math
  • action: 在 create/delete 的时候使用, 默认 manage, 跟在 controller 后面, 譬如 erisl-crm-cli create|delete math test

根目录新增 next.config.js

const { nextConfig } = require('erisl-crm-cli')
const projectConfig = require('./project.config')

const { version, prefix, protocol, host, port } = projectConfig 

module.exports = (phase, defaultConfig) => {
    let configObj = nextConfig(phase, defaultConfig, { 
        version, prefix, protocol, host, port
    })

    return configObj
}

根目录新增 mysql.config.js

const { mysqlConfig } = require('erisl-crm-cli')
const { mysqlOptions } = mysqlConfig
const { user, password, host, port, database } = mysqlOptions

module.exports = {
    mysqlOptions: {
        user,
        password,
        host,
        port,
        database
    }
}

根目录新增 project.config.js

const { projectConfig } = require('erisl-crm-cli')

const { version, prefix, protocol, host, port } = projectConfig

module.exports = {
    version,
    prefix,
    protocol,
    host, 
    port
}

根目录新增 server

  • apis 存放 Rest Api
  • modules 存放 graphql 的 resolver 和 schema
  • plugins 存放 graphql 的 plugin
  • .js 举例: test.js => 用于响应 /test/, ${prefix}/test/* 请求
  const express = require('express')
  const moment = require('moment')

  const router = express.Router()

  router.use((req, res, next) => {
      const fullUrl = req.protocol + '://' + req.get('host') + req.originalUrl
      console.log(moment().format('YYYY-MM-DD HH:mm:ss') + ' ' + fullUrl)
      next()
  })

  router.get('/*', (req, res) => {
      res.statusCode = 200
      res.json({ name: 'TEST' })
  })

  module.exports = router
  • apis/hello.js
const express = require('express')
const router = express.Router()

router.get('/*', (req, res) => {
    res.statusCode = 200
    res.json({ name: 'Hello' })
})

module.exports = router
  • modules/link/schema.js
module.exports = {
    query: `
        link: String
    `,
    mutation: `
        linkUpdate(link: Date): String
    `,
    subscription: ``,
    type: ``
} 
  • modules/link/resolver.js
let localLink = ''

module.exports = {
    link: () => {
        return localLink
    },
    linkUpdate: ({ link }) =>{
        console.log('link', link)
        localLink = link
        return localLink
    }
}
  • plugins/date.js
const moment = require('moment')
const { Kind } = require('graphql/language')
const { GraphQLScalarType } = require('graphql')

const customScalarDate = new GraphQLScalarType({
    name: 'Date',
    description: 'Date custom scalar type',
    parseValue: value => moment(value).valueOf(),
    serialize: value => moment(value).format('YYYY-MM-DD HH:mm:ss:SSS'),
    parseLiteral: ast => (ast.kind === Kind.INT)
        ? parseInt(ast.value, 10)
        : null
})

module.exports = { Date: customScalarDate }
1.0.73

4 years ago

1.0.72

4 years ago

1.0.71

4 years ago

1.0.70

4 years ago

1.0.69

4 years ago

1.0.68

4 years ago

1.0.67

4 years ago

1.0.66

4 years ago

1.0.65

4 years ago

1.0.64

4 years ago

1.0.62

4 years ago

1.0.61

4 years ago

1.0.60

4 years ago

1.0.63

4 years ago

1.0.59

4 years ago

1.0.58

4 years ago

1.0.57

4 years ago

1.0.56

4 years ago

1.0.55

4 years ago

1.0.54

4 years ago

1.0.53

4 years ago

1.0.52

4 years ago

1.0.51

4 years ago

1.0.48

4 years ago

1.0.47

4 years ago

1.0.49

4 years ago

1.0.50

4 years ago

1.0.46

4 years ago

1.0.45

4 years ago

1.0.44

4 years ago

1.0.43

4 years ago

1.0.42

4 years ago

1.0.40

4 years ago

1.0.41

4 years ago

1.0.39

4 years ago

1.0.38

4 years ago

1.0.37

4 years ago

1.0.36

4 years ago

1.0.35

4 years ago

1.0.34

4 years ago

1.0.33

4 years ago

1.0.32

4 years ago

1.0.31

4 years ago

1.0.30

4 years ago

1.0.29

4 years ago

1.0.28

4 years ago

1.0.27

4 years ago

1.0.26

4 years ago

1.0.25

4 years ago

1.0.22

4 years ago

1.0.24

4 years ago

1.0.23

4 years ago

1.0.21

4 years ago

1.0.20

4 years ago

1.0.19

4 years ago

1.0.18

4 years ago

1.0.17

4 years ago

1.0.16

4 years ago

1.0.15

4 years ago

1.0.14

4 years ago

1.0.13

4 years ago

1.0.12

4 years ago

1.0.11

4 years ago

1.0.10

4 years ago

1.0.9

4 years ago

1.0.8

4 years ago

1.0.7

4 years ago

1.0.6

4 years ago

1.0.5

4 years ago

1.0.4

4 years ago

1.0.3

4 years ago

1.0.2

4 years ago

1.0.1

4 years ago