Angle-cli 服务器-如何指定默认端口

使用带有 ng serve命令的 angle-cli,如何指定默认端口,以便不必每次都手动传递 --port标志?

我想从默认端口4200更改。

146107 次浏览

更新@angle/cli@9.x: and over

angular.json中,可以为每个“项目”指定一个端口

"projects": {
"my-cool-project": {
... rest of project config omitted
"architect": {
"serve": {
"options": {
"port": 1337
}
}
}
}
}

所有可供选择的方案:

Https://angular.io/guide/workspace-config#project-tool-configuration-options

或者,您可以在每次运行 ng 服务时指定端口,如下所示:

ng serve --port 1337

使用这种方法,您可能希望将其放到 package.json 中的脚本中,以便每次运行/与团队中的其他人共享该配置时更容易:

"scripts": {
"start": "ng serve --port 1337"
}

遗产:

@ angle/cli final 更新:

angular-cli.json中,可以用默认值指定端口:

"defaults": {
"serve": {
"port": 1337
}
}

遗产:

测试角 -cli@1.0.0-beta22-1

angular-cli中的服务器来自 ember-cli项目。 要配置服务器,请在项目根目录中创建一个 .ember-cli文件:

{
"port": 1337
}

重新启动服务器,它将在该端口上服务。

这里有更多的选择: Http://ember-cli.com/#runtime-configuration

{
"skipGit" : true,
"port" : 999,
"host" : "0.1.0.1",
"liveReload" : true,
"environment" : "mock-development",
"checkForUpdates" : false
}

在角度2 cli@2.3.1中,

要在不同的端口上运行新项目,一种方法是在运行 ng service 命令时指定端口。

ng serve --port 4201

或者另一种方式,您可以编辑 package.json 文件脚本部分,并将端口附加到您的 start 变量,就像我在下面提到的那样,然后简单地运行“ npm start”

 "scripts": {


"ng": "ng",
"start": "ng serve --port 4201",
... : ...,
... : ....
}

在不需要每次都显式定义端口的情况下,这种方法要好得多。

使用 npm 脚本代替... ... 编辑 package.json 并将命令添加到脚本部分。

{
"name": "my new project",
"version": "0.0.0",
"license": "MIT",
"angular-cli": {},
"scripts": {
"ng": "ng",
"start": "ng serve --host 0.0.0.0 --port 8080",
"lint": "tslint \"src/**/*.ts\" --project src/tsconfig.json --type-check && tslint \"e2e/**/*.ts\" --project e2e/tsconfig.json --type-check",
"test": "ng test",
"pree2e": "webdriver-manager update --standalone false --gecko false",
"e2e": "protractor"
},
"private": true,
"dependencies": {
"@angular/common": "^2.3.1",
"@angular/compiler": "^2.3.1",
"@angular/core": "^2.3.1",
"@angular/forms": "^2.3.1",
"@angular/http": "^2.3.1",
"@angular/platform-browser": "^2.3.1",
"@angular/platform-browser-dynamic": "^2.3.1",
"@angular/router": "^3.3.1",
"core-js": "^2.4.1",
"rxjs": "^5.0.1",
"ts-helpers": "^1.1.1",
"zone.js": "^0.7.2"
},
"devDependencies": {
"@angular/compiler-cli": "^2.3.1",
"@types/jasmine": "2.5.38",
"@types/node": "^6.0.42",
"angular-cli": "1.0.0-beta.26",
"codelyzer": "~2.0.0-beta.1",
"jasmine-core": "2.5.2",
"jasmine-spec-reporter": "2.5.0",
"karma": "1.2.0",
"karma-chrome-launcher": "^2.0.0",
"karma-cli": "^1.0.1",
"karma-jasmine": "^1.0.2",
"karma-remap-istanbul": "^0.2.1",
"protractor": "~4.0.13",
"ts-node": "1.2.1",
"tslint": "^4.3.0",
"typescript": "~2.0.3"
}
}

那就执行 npm start

现在可以在. angle-cli. json 中的默认值下面指定端口:

"defaults": {
"styleExt": "scss",
"serve": {
"port": 8080
},
"component": {}
}

在 angle-cli v1.0.6中进行测试

For@angle/cli v6.2.1

项目配置文件 angular.json能够处理多个可以单独服务的项目(工作区)。

ng config projects.my-test-project.targets.serve.options.port 4201

其中 my-test-project部分是您使用 ng new命令设置的项目名,如下所示:

$ ng new my-test-project
$ cd my-test-project
$ ng config projects.my-test-project.targets.serve.options.port 4201
$ ng serve
** Angular Live Development Server is listening on localhost:4201, open your browser on http://localhost:4201/ **

遗产:

我通常使用 ng set命令来更改项目级别的角度 CLI 设置。

ng set defaults.serve.port=4201

它更改. angular.cli.json 并将端口设置添加为 之前提到过

在这个改变之后,您可以简单地使用 ng serve,它将使用首选端口,而不需要每次都指定它。

至于 角 CLI: 7.1.4,有两种常见的方法来实现 更改默认端口

一号

angular.json中,将 --port选项添加到 serve部分,并使用 ng serve启动服务器。

"serve": {
"builder": "@angular-devkit/build-angular:dev-server",
"options": {
"browserTarget": "demos:build",
"port": 1337
},
"configurations": {
"production": {
"browserTarget": "demos:build:production"
}
}
},

二号

package.json中,将 --port选项添加到 ng serve并使用 npm start启动服务器。

  "scripts": {
"ng": "ng",
"start": "ng serve --port 8000",
"build": "ng build",
"test": "ng test",
"lint": "ng lint",
"e2e": "ng e2e"
},

Elwyn 提供的答案是正确的。但是您也应该更新 e2e 的量角器配置。

在 angular.json,

"serve": {
"builder": "@angular-devkit/build-angular:dev-server",
"options": {
"port": 9000,
"browserTarget": "app:build"
}
}

在 e2e/protractor.con.js 中

exports.config = {
allScriptsTimeout: 11000,
specs: [
'./src/**/*.e2e-spec.ts'
],
capabilities: {
'browserName': 'chrome'
},
directConnect: true,
baseUrl: 'http://localhost:9000/'
}

当你需要使用 NodeJS 环境变量来指定 Angular CLI dev 服务器端口时,可能会出现这样的情况。一种可能的解决方案是将运行的 CLI dev 服务器移动到一个单独的 NodeJS 脚本中,该脚本将读取端口值(例如,从。Env 文件) ,并使用它执行带有 port参数的 ng serve:

// run-env.js
const dotenv = require('dotenv');
const child_process = require('child_process');


const config = dotenv.config()
const DEV_SERVER_PORT = process.env.DEV_SERVER_PORT || 4200;


const child = child_process.exec(`ng serve --port=${DEV_SERVER_PORT}`);
child.stdout.on('data', data => console.log(data.toString()));

然后您可以 a)通过 node run-env直接运行这个脚本,b)通过 npm 通过更新 package.json 运行它,例如

"scripts": {
"start": "node run-env"
}

run-env.js应该提交回购协议,而 .env不应该。关于这种方法的更多细节可以在这篇文章中找到: 如何更改 Angular CLI 开发服务器端口

对于角版本 12这为我工作。在 angular.json更新像这样

"serve": {
"builder": "@angular-devkit/build-angular:dev-server",
"configurations": {
"production": {
"browserTarget": "angular-website:build:production"
},
"development": {
"browserTarget": "angular-website:build:development",
"port": 5000
}
},
"defaultConfiguration": "development"
},