目录
semantic-release-bot

Release 4.0.0

[skip ci]

4.0.0 (2024-12-31)

⚠ BREAKING CHANGES

  • drop Node.js < 18.19.0 support

part of https://github.com/eggjs/egg/issues/3644

https://github.com/eggjs/egg/issues/5257

Summary by CodeRabbit

Release Notes

  • New Features

    • Added support for ECMAScript modules (ESM).
    • Enhanced CLI with more robust start and stop commands.
    • Improved TypeScript integration and type safety.
    • Introduced new commands for stopping an Egg.js server application.
    • Added new configuration options for logging and process management.
  • Improvements

    • Updated package configuration for better modularity.
    • Modernized test infrastructure with TypeScript support.
    • Refined error handling and logging mechanisms.
    • Enhanced process management capabilities.
  • Improved documentation with updated installation instructions and usage examples.

  • Breaking Changes

    • Renamed package from egg-scripts to @eggjs/scripts.
    • Requires Node.js version 18.19.0 or higher.
    • Significant changes to project structure and module exports.
  • Bug Fixes

    • Improved process management for server start and stop operations.
    • Enhanced cross-platform compatibility.
  • Fixed issues with asynchronous route handlers in various applications.

Features

  • support cjs and esm both by tshy (#63) (d9d0bc6)
1年前85次提交

@eggjs/scripts

NPM version Node.js CI Test coverage npm download Node.js Version PRs Welcome

deploy tool for egg project.

Note: Windows is partially supported, see #22

Install

npm i @eggjs/scripts --save

Usage

Add eggctl to package.json scripts:

{
  "scripts": {
    "start": "eggctl start --daemon",
    "stop": "eggctl stop"
  }
}

Then run as:

  • npm start
  • npm stop

Note: egg-scripts is not recommended to install global, you should install and use it as npm scripts.

Command

start

Start egg at prod mode.

$ eggctl start [options] [baseDir]

# Usage
# eggctl start --port=7001
# eggctl start ./server
  • Arguments
    • baseDir - directory of application, default to process.cwd().
  • Options
    • port - listening port, default to process.env.PORT, if unset, egg will use 7001 as default.
    • title - process title description, use for kill grep, default to egg-server-${APP_NAME}.
    • workers - numbers of app workers, default to process.env.EGG_WORKERS, if unset, egg will use os.cpus().length as default.
    • daemon - whether run at background daemon mode, don’t use it if in docker mode.
    • framework - specify framework that can be absolute path or npm package, default to auto detect.
    • env - server env, default to process.env.EGG_SERVER_ENV, recommended to keep empty then use framwork default env.
    • stdout - customize stdout file, default to $HOME/logs/master-stdout.log.
    • stderr - customize stderr file, default to $HOME/logs/master-stderr.log.
    • timeout - the maximum timeout when app starts, default to 300s.
    • ignore-stderr - whether ignore stderr when app starts.
    • sourcemap / typescript / ts - provides source map support for stack traces.
    • node - customize node command path, default will find node from $PATH

stop

Stop egg gracefull.

Note: if exec without --title, it will kill all egg process.

$ eggctl stop [options]

# Usage
# eggctl stop --title=example
  • Options
    • title - process title description, use for kill grep.
    • timeout - the maximum timeout when app stop, default to 5s.

Options in package.json

In addition to the command line specification, options can also be specified in package.json. However, the command line designation takes precedence.

{
  "eggScriptsConfig": {
    "port": 1234,
    "ignore-stderr": true,
    // will pass as `node --max-http-header-size=20000`
    "node-options--max-http-header-size": "20000",
    // will pass as `node --allow-wasi`
    "node-options--allow-wasi": true
  }
}

Questions & Suggestions

Please open an issue here.

License

MIT

Contributors

Contributors

Made with contributors-img.

    Gitlink(确实开源)
  • 加入我们
  • 官网邮箱:gitlink@ccf.org.cn
  • QQ群
  • QQ群
  • 公众号
  • 公众号

版权所有:中国计算机学会技术支持:开源发展技术委员会
京ICP备13000930号-9 京公网安备 11010802032778号