You're Invited:Meet the Socket Team at RSAC and BSidesSF 2026, March 23–26.RSVP
Socket
Book a DemoSign in
Socket

midway-bin

Package Overview
Dependencies
Maintainers
2
Versions
85
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

midway-bin

Midway Command Tools

latest
Source
npmnpm
Version
1.20.3
Version published
Weekly downloads
1.5K
191.38%
Maintainers
2
Weekly downloads
 
Created
Source

midway-bin

Package Quality PRs Welcome

this is a sub package for midway.

midway developer tool, extends [egg-bin].

Install

$ npm i midway-bin --save-dev

Usage

Add midway-bin to package.json scripts like [egg-bin], but just replace command by `midway-bin:

{
  "scripts": {
    "dev": "midway-bin dev",
    "debug": "midway-bin debug",
    "test-local": "midway-bin test",
    "test": "npm run lint -- --fix && npm run midway-local",
    "cov": "midway-bin cov",
    "lint": "eslint .",
    "pkgfiles": "midway-bin pkgfiles",
    "autod": "midway-bin autod",
    "ci": "npm run lint && npm run autod -- --check && npm run pkgfiles -- --check && npm run cov"
  }
}

Command

midway-bin add new command

  • build
  • clean
  • doc

build

build typescript source file to dist directory like tsc and copy js/css/html file to same place.

$ midway-bin build

options

  • --clean -c clean dist directory before build
  • --entrypoint <entrypoint-file> bundle the output with the specified file as entrypoint

copy static file

we can copy static file when ts file compiling.

// in package.json
  "midway-bin-build": {
    "include": [
      "app/public",
      "app/view"
    ]
  }

it will be copy src/app/public to ${outDir}/app/public.

The outDir field is configured in the tsconfig.json File, see compiler-options.

clean

clean a dist directory by build

$ midway-bin clean

doc

generate application document by typedoc

$ midway-bin doc

options

like typedoc, see link

  • --options [typedoc.js] Specify a js option file that should be loaded.
  • --out -o [outPath] Specifies the location the documentation should be written to.
  • --mode -m default value is file, Specifies the output mode the project is used to be compiled with.
  • --exclude Exclude files by the given pattern when a path is provided as source.
  • --theme default value is default Specify the path to the theme that should be used.
  • --excludeExternals default value is true Prevent externally resolved TypeScript files from being documented.
  • --ignoreCompilerErrors default value is true Generates documentation, even if the project does not TypeScript compile.
  • --hideGenerator default value is true Do not print the TypeDoc link at the end of the page.

Tips: If the options parameter is supplied, the other default parameters are invalid

License

MIT

Keywords

midway

FAQs

Package last updated on 07 Sep 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