@@ -10,7 +10,8 @@ with [Angular2 Framework](https://angular.io/).
10
10
11
11
* [ Download and install] ( #download-and-install )
12
12
* [ Quick start] ( #quick-start )
13
- * [ Build and run] ( #build-and-run )
13
+ * [ Run the demo] ( #run-the-demo )
14
+ * [ Build] ( #build )
14
15
* [ Package directory] ( #package-directory )
15
16
* [ Demos overview] ( #demos-overview )
16
17
* [ Contacts] ( #contacts )
@@ -74,25 +75,27 @@ Here's a basic sample that shows how to quickly create an Angular2 application w
74
75
75
76
76
77
77
- ## Build and run
78
- In [ demos] ( https://github.com/AnyChart/AnyChart-AngularJS-2.x/tree/master/demos ) the
79
- [ SystemJS] ( https://github.com/systemjs/systemjs ) loader is used for
80
- dynamic modules loading.
78
+ ## Run the demo
79
+ 1 ) Go to any of [ demos] ( https://github.com/AnyChart/AnyChart-AngularJS-2.x/tree/master/demos )
80
+ directory
81
+ 2 ) Install all dependencies with ` npm install ` command.
82
+ 3 ) Start the demo with ` npm run start ` command.
81
83
82
- 1 ) Despite the AnyChart-Angular2 integration is available with package managers,
84
+
85
+
86
+ ## Build
87
+
88
+ 1 ) In [ demos] ( https://github.com/AnyChart/AnyChart-AngularJS-2.x/tree/master/demos ) the
89
+ [ SystemJS] ( https://github.com/systemjs/systemjs ) loader is used for
90
+ dynamic modules loading.
91
+ Despite the AnyChart-Angular2 integration is available with package managers,
83
92
the license allows to modify and use it freely. This quick start guide
84
93
clarifies the structure of integration project and explains how it works and
85
94
can be used.
86
95
87
- Since the integration is cloned from GitHub and Node Package Manager
88
- (` npm ` command) is available in command line, the following command compiles
89
- source code to ** dist/** directory:
90
- ``` sh
91
- npm run build
92
- ```
93
-
94
- 2 ) If needed, ` package.json ` of demo-application can be configured to declare custom run-commands
95
- and to add required dependencies excepting already included.
96
+ 2 ) If needed, ` package.json ` of [ demo] ( https://github.com/AnyChart/AnyChart-AngularJS-2.x/tree/master/demos ) -application
97
+ can be configured to declare custom run-commands and to add required
98
+ dependencies excepting already included.
96
99
97
100
3 ) Run ` npm install ` command to load all required npm modules.
98
101
@@ -118,6 +121,13 @@ like described in [Quick start](#quick-start).
118
121
directory, the application's Angular2 modules and components can be created
119
122
right there.
120
123
124
+ 8 ) Since the integration is cloned from GitHub and Node Package Manager
125
+ (` npm ` command) is available in command line, the following command compiles
126
+ source code to ** dist/** directory:
127
+ ``` sh
128
+ npm run build
129
+ ```
130
+
121
131
122
132
## Package directory
123
133
0 commit comments