最新消息:雨落星辰是一个专注网站SEO优化、网站SEO诊断、搜索引擎研究、网络营销推广、网站策划运营及站长类的自媒体原创博客

javascript - Explanation for angular 2 package.json file - Stack Overflow

programmeradmin2浏览0评论

I'm not willing to use typescript piler provided in angular 2 quick start guide and will use gulp.js instead. However there are few questions I have about package.json file provided on angular website:

{
  "name": "angular-starter",
  "version": "1.0.0",
  "scripts": {
    "tsc": "tsc",
    "tsc:w": "tsc -w",
    "lite": "lite-server",
    "start": "concurrent \"npm run tsc:w\" \"npm run lite\" "
  },
  "license": "ISC",
  "dependencies": {
    "angular2": "2.0.0-beta.0",
    "systemjs": "0.19.6",
    "es6-promise": "^3.0.2",
    "es6-shim": "^0.33.3",
    "reflect-metadata": "0.1.2",
    "rxjs": "5.0.0-beta.0",
    "zone.js": "0.5.10"
  },
  "devDependencies": {
    "concurrently": "^1.0.0",
    "lite-server": "^1.3.1",
    "typescript": "^1.7.3"
  }
}

I'm sure that few things like tsc, tsc:w script ands alongside typescript devDependency can be safely removed, but am not sure about purpose for things like concurently dependency as well as dependency section in general, could you guys provide more info on all dependencies that follow angular2? I tried looking these up in quickstart guide along apendixes, but had no luck as they are very short.

I'm not willing to use typescript piler provided in angular 2 quick start guide and will use gulp.js instead. However there are few questions I have about package.json file provided on angular website:

{
  "name": "angular-starter",
  "version": "1.0.0",
  "scripts": {
    "tsc": "tsc",
    "tsc:w": "tsc -w",
    "lite": "lite-server",
    "start": "concurrent \"npm run tsc:w\" \"npm run lite\" "
  },
  "license": "ISC",
  "dependencies": {
    "angular2": "2.0.0-beta.0",
    "systemjs": "0.19.6",
    "es6-promise": "^3.0.2",
    "es6-shim": "^0.33.3",
    "reflect-metadata": "0.1.2",
    "rxjs": "5.0.0-beta.0",
    "zone.js": "0.5.10"
  },
  "devDependencies": {
    "concurrently": "^1.0.0",
    "lite-server": "^1.3.1",
    "typescript": "^1.7.3"
  }
}

I'm sure that few things like tsc, tsc:w script ands alongside typescript devDependency can be safely removed, but am not sure about purpose for things like concurently dependency as well as dependency section in general, could you guys provide more info on all dependencies that follow angular2? I tried looking these up in quickstart guide along apendixes, but had no luck as they are very short.

Share Improve this question asked Jan 11, 2016 at 14:36 IljaIlja 46.6k103 gold badges289 silver badges527 bronze badges 1
  • Did you look them up at npmjs? – xkcd149 Commented Jan 11, 2016 at 14:57
Add a ment  | 

2 Answers 2

Reset to default 5

concurently is and npm package which allows to run multiple CLI mands in one shot, see line below in package.json. concurrent mand is ing from concurrenlty. You can remove that safely.

"start": "concurrent \"npm run tsc:w\" \"npm run lite\" "

dependency section in package.json file lets you keep track of project dependencies. Using reference of these packages in dependency section allows you to use module bundler like webpack, browserify etc. It also keeps your project linked to specific versions of each of these packages if new version introduce any breaking changes etc. Having this section in package.json file lets you remove packages directory (node_modules) to be under source control. Installing these packages again on lets say another machine requires only package.json and dependency section in it.

For each package in dependency section search npmjs website for more details.

Well adding some points with @nexus23's answer. my answer is not pleted i know but for ment it is too long so posting as answer hope this will help somene.

Package.json is the important file for the project where you import our dependencies list which you used in your project. Basically there are three types of dependencies

  • Dependency
  • DevDependency
  • peerDependency for more documentation refer here in the answers.

now e to the point i.e answer to this question. there are few dependencies which we have to include for make our angular2 project run.which is listed below.

  1. angular2 -- is the basic file for the angular2 project. which is most important file for our project. (stable latest version is angular2 beta)

  2. systemjs -- is the Universal dynamic module loader - loads ES6 modules, AMD, CommonJS and global scripts in the browser and NodeJS. Works with both Traceur and Babel. we use systemjs Config for setup the baseUrl, to Import main file etc in our main file i.e index.html like following:

    <script> System.config({ baseURL: '<%= APP_BASE %>', paths: {'*': '*.js?v=<%= VERSION %>'}, defaultJSExtensions: true }); </script>

发布评论

评论列表(0)

  1. 暂无评论