December 2016
Intermediate to advanced
841 pages
17h
English
Presented in this section is the folder structure of the application we are going to build. In the root directory, you can find the application access point (index.html), as well as some of the automation tools' configuration files (gulpfile.js, karma.conf.js, package.json, and so on). You can also observe the typings folder, which contains some type definition files.
Just as in the previous chapters, the application source code is located under the source directory. The unit and integration tests are located in the test folder. The following is the folder structure of the application:
├── LICENSE ├── README.md ├── css │ └── site.css ├── data │ ├── nasdaq.json │ └── nyse.json ├── gulpfile.js ├── index.html ├── karma.conf.js ...
Read now
Unlock full access