Launching application via egg-bin dev will bring something magical to help people to develop in high efficiency. However, actually, those features are not required in production or any other environment. Let's walk through and learn how to deploy your application in Egg's way.
There are two steps to achieve building once and deploying multiply from source code to runtime.
Build
In the stage, you don't need to compile JavaScript files unless TypeScript or Babel(ES6 features) are involved in stack.
Generally, before deploying the application, dependencies will be installed with NODE_ENV=production or --production, which will exclude devDependencies because those used in development may increase the size of package released or even create pitfalls that you never expect.
$ cd baseDir
$ npm install --production
$ tar -zcvf ../release.tgz .Both the application and dependencies will be packed into a tgz file, what you are going to do is unzipping and launching it.
Reusable package brings a few pros in:
- Environments in building and runtime are different, try to keep the later environment pure and stable.
- Abbreviating publish progress and making rollback without hassle.
Deploy
Node.js(>= 14.20.0) is required so that you should make sure it is pre-installed in runtime environment.
Egg takes egg-cluster to create Master process, which you can rely on to secure the application instead of daemon manager like pm2. The API is also really convenient for developers to achieve that, just egg.startCluster.
And framework also provide egg-scripts for developers to start/stop application at prod mode.
Firstly, we need to import egg-scripts as dependencies:
$ npm i egg-scripts --saveThen add npm scripts to package.json:
{
"scripts": {
"start": "egg-scripts start --daemon",
"stop": "egg-scripts stop"
}
}Then we are able to use npm start and npm stop to manage application.
Note:
egg-scriptshas limited support for Windows, see #22.
Start
$ egg-scripts start --port=7001 --daemon --title=egg-server-showcaseOptions:
--port=7001http server port, will useprocess.env.PORT, default to7001.--daemonwhether run at background, so you don't neednohup. Ignore this when the application run in docker instance.--env=prodthen framework env, will useprocess.env.EGG_SERVER_ENV, default toprod。--workers=2worker count, default to cpu cores, which can leverage the capability of the cpu.--title=egg-server-showcaseconvenient forps + grep, default toegg-server-${appname}.--framework=yadanconfigegg.frameworkatpackage.jsonor pass this args, when you are using Custom Framework.--ignore-stderrignore the std err at start up。--https.keyspecify the https key full path, if start the server with https.--https.certspecify the https certificate full path, if start the server with https.- support all options from egg-cluster, such as
--port.
More about egg-scripts and egg-cluster documents.
Note:
--workers, default toprocess.env.EGG_WORKERS, if unset, egg will useos.cpus().length. However, in the docker, theos.cpus().lengthmay not be equal to the number of allocated cores, and the obtained value may be large, leading to startup failure. Then try to manually set--workers, see #1431.
Dispatch with Arguments
Arguments of dispatch can be configured in config.{env}.js.
// config/config.default.js
exports.cluster = {
listen: {
port: 7001,
hostname: '127.0.0.1', // It is not recommended to set the hostname to '0.0.0.0', which will allow connections from external networks and sources, please use it if you know the risk.
// path: '/var/run/egg.sock',
},
};server.listen supports arguments including path, port and hostname to change dispatching behavior. One thing you should know is that the port in egg.startCluster will override the one in application config.
Stop
$ egg-scripts stopThis command will kill master process which will handler and notice worker and agent to gracefull exit.
Also you can manually call ps -eo "pid,command" | grep -- "--title=egg-server" to find master process then kill without -9.