search
HomeWeb Front-endJS TutorialSetting up the Angular 5.0 development environment and creating the first ng5 project

This article mainly introduces angularjshow to set up a development environment and create the first ng5 project. Now let’s take a look at this article

1. Install Node.js

Before we start working, we must set up the development environment.
If Node.js® and npm are not already on your machine, please install them first.
Go to the official website of Node.js, https://nodejs.org/en/, click the download button, download the latest version, and just go to the next step to install it. The software will automatically be written into the environment variables, so you can Use the node or npm (package management tool) command directly in the cmd command window.

Please run the commands node -v and npm -v in the terminal/console window first to verify that you are running node 6.9.x and npm 3.x.x or above. Older versions may have errors, newer versions are fine.

2. Install cnpm (optional operation)

The full name of npm is a NodeJS package management and distribution tool, which has become an unofficial release Node module (package) standards.
Since the npm installation plug-in is downloaded from a foreign server, it is greatly affected by the network, and exceptions may occur. Then the Taobao team produced a complete npmjs.org image, using cnpm instead of npm. The usage of cnpm is the same as that of nodejs npm, except that in When executing the command, change npm to cnpm.
Enter in the cmd command window and press Enter

npm install cnpm -g --registry=https://registry.npm.taobao.org

When the installation is complete, enter cnpm -v. When the version number appears, the installation is successful.
If your Internet speed is fast enough, the operation of installing cnpm is optional. The author once used cnpm to download the dependency files of an ng5 project. It had no impact during development, but an error occurred when using ng build --prod. I still don't know what the problem was. So the following operations are based on npm.

3. Install Angular CLI

Enter the following command in cmd to install Angular CLI globally.

npm install -g @angular/cli

After that, enter ng -v. When the version number appears, the installation is successful. If the version number of Angular CLI is above 1.5, the newly created project will be Angular 5.0 version.
ng is the abbreviation of angular.

4. Install IDE

Integrated Development Environment (IDE, Integrated Development Environment) is an application used to provide a program development environment, generally including a code editor, compiler tools such as browsers, debuggers, and graphical user interfaces. It is an integrated development software service suite that integrates code writing functions, analysis functions, compilation functions, debugging functions, etc. All software or software packages (groups) with this feature can be called integrated development environments.
Angular IDE by Webclipse
intellij idea
Visual Studio Code
webstorm
Please choose an IDE that you like and are familiar with, which will improve your work efficiency. The author's IDE is webstorm.

5. Create a new project

Open a terminal window.

Run the following command to generate a new project and the skeleton code of the application:

ng new my-app

my-app is the name of the project and can be defined arbitrarily.

Please wait. It takes a lot of time to create a new project. Most of the time it is installing those npm packages, which are about more than 200M.

Enter the project directory and start the server.

cd my-app
ng serve --open

ng serve command will start the development server, listen for file changes, and rebuild the application when these files are modified.
Use the --open (or -o) parameter to automatically open the browser and access http://localhost:4200/.

This app will greet you with a message:
Setting up the Angular 5.0 development environment and creating the first ng5 project

6. Edit our first Angular component

This CLI creates our first Angular component. It is the root component called app-root. You can find it in the ./src/app/app.component.ts directory.

Open this component file and change the title attribute from Welcome to app!! to Welcome to My First Angular App!!:

src/app/app.component.ts:

export class AppComponent {
  title = 'My First Angular App';
}

The browser will automatically refresh, and we will see the modified title. Not bad, but it could be a little better looking.

Open src/app/app.component.css and set some styles for this component.

src/app/app.component.css:

h1 {
  color: #369;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 250%;
}

Setting up the Angular 5.0 development environment and creating the first ng5 project

Editing our first Angular component successfully!

7. Project File Overview

The Angular CLI project is the basis for rapid experimentation and development of enterprise solutions.

The first file you have to look at is README.md. It provides some basic information on how to use CLI commands.

7.1 src folder

Your application code is located in the src folder. All Angular components, templates, styles, images, and anything else your app needs is there. Files outside this folder are used to provide support for building applications.
Setting up the Angular 5.0 development environment and creating the first ng5 project

app/app.component.{ts,html,css,spec.ts}
Define the AppComponent component using HTML templates, CSS styles and unit tests . It is the root component, and as the application grows it becomes the root node of a tree of components.

app/app.module.ts
Define AppModule. This root module will tell Angular how to assemble the application. Currently, it only declares AppComponent. It will declare more components later.

assets/*
You can put pictures and anything else in this folder. When building the application, they will all be copied to the release package.

environments/*
This folder contains files prepared for each target environment, which export some configuration variables used in the application. These files will be replaced when building the application. For example, you may use different API endpoint addresses in the production environment, or use different statistics token parameters. Even use some mock services. The CLI takes all of this into consideration for you.

favicon.ico
Every website hopes that it will look better in the bookmarks bar. Please replace it with your own icon.

index.html
This is the HTML file of the main page that others see when they visit your website. In most cases you won't need to edit it. The CLI will automatically add all js and css files when building the app, so you don't have to manually add any <script> or <link> tags here. </script>

main.ts
This is the main entry point of the application. Use the JIT compiler to compile this application and start the application's root module AppModule to run it in the browser. You can also use the AOT compiler without modifying any code - just pass the --aot parameter to ng build or ng serve.

polyfills.ts
Different browsers have different levels of support for web standards. Polyfills can help us standardize these differences. Just using core-js and zone.js is usually enough, but you can also check the browser support guide for more information.

styles.css
Here are your global styles. In most cases, you'll want to use local styles within your components for easier maintenance, but you still need to centrally store styles that affect your entire application here.

test.ts
This is the main entry point for unit testing. It has some custom configuration that you may not be familiar with, but you don't need to edit anything here.

tsconfig.{app|spec}.json
TypeScript compiler configuration file. tsconfig.app.json is prepared for Angular applications, while tsconfig.spec.json is prepared for unit testing.

7.2 Root directory

The src/ folder is one of the root folders of the project. Other files are used to help you build, test, maintain, document, and release your application. They are placed in the root directory, level with src/.
Setting up the Angular 5.0 development environment and creating the first ng5 project

e2e/
Under e2e/ it is an end-to-end test. They are not under src/ because end-to-end testing is actually independent of the application. It is only suitable for testing your application. That's why it has its own tsconfig.json.

node_modules/
Node.js creates this folder and places all third-party modules listed in package.json in it.

.angular-cli.json
Angular CLI configuration file. In this file, we can set a series of default values ​​and configure which files to include when the project is compiled. To learn more, see its official documentation. (If you want to learn more, go to PHP Chinese website AngularJS Development Manual to learn)

.editorconfig
A simple configuration file for your editor to ensure participation Everyone on your project has a basic editor configuration. Most editors support .editorconfig files, see http://php.cn/course/47.html for details.

.gitignore
A Git configuration file used to ensure that certain automatically generated files will not be submitted to the source code control system.

karma.conf.js
Give Karma’s unit test configuration, which will be used when running ng test.

package.json
npm configuration file, which lists the third-party dependency packages used by the project. You can also add your own custom scripts here.

protractor.conf.js
The end-to-end test configuration file for Protractor, which will be used when running ng e2e.

README.md
The basic document of the project, with CLI command information pre-written. Don't forget to improve it with project documentation so that everyone who looks at this repository can build your app accordingly.

tsconfig.json
TypeScript compiler configuration, your IDE will use it to provide you with better help.

tslint.json
Configuration information for TSLint and Codelyzer, which will be used when running ng lint. The Lint function can help you maintain a unified code style.

Okay, this article ends here (if you want to see more, go to the PHP Chinese website AngularJS User Manual to learn). If you have any questions, you can leave a message below.


The above is the detailed content of Setting up the Angular 5.0 development environment and creating the first ng5 project. For more information, please follow other related articles on the PHP Chinese website!

Statement
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Angular学习之聊聊独立组件(Standalone Component)Angular学习之聊聊独立组件(Standalone Component)Dec 19, 2022 pm 07:24 PM

本篇文章带大家继续angular的学习,简单了解一下Angular中的独立组件(Standalone Component),希望对大家有所帮助!

angular学习之详解状态管理器NgRxangular学习之详解状态管理器NgRxMay 25, 2022 am 11:01 AM

本篇文章带大家深入了解一下angular的状态管理器NgRx,介绍一下NgRx的使用方法,希望对大家有所帮助!

项目过大怎么办?如何合理拆分Angular项目?项目过大怎么办?如何合理拆分Angular项目?Jul 26, 2022 pm 07:18 PM

Angular项目过大,怎么合理拆分它?下面本篇文章给大家介绍一下合理拆分Angular项目的方法,希望对大家有所帮助!

聊聊自定义angular-datetime-picker格式的方法聊聊自定义angular-datetime-picker格式的方法Sep 08, 2022 pm 08:29 PM

怎么自定义angular-datetime-picker格式?下面本篇文章聊聊自定义格式的方法,希望对大家有所帮助!

浅析Angular中的独立组件,看看怎么使用浅析Angular中的独立组件,看看怎么使用Jun 23, 2022 pm 03:49 PM

本篇文章带大家了解一下Angular中的独立组件,看看怎么在Angular中创建一个独立组件,怎么在独立组件中导入已有的模块,希望对大家有所帮助!

手把手带你了解Angular中的依赖注入手把手带你了解Angular中的依赖注入Dec 02, 2022 pm 09:14 PM

本篇文章带大家了解一下依赖注入,介绍一下依赖注入解决的问题和它原生的写法是什么,并聊聊Angular的依赖注入框架,希望对大家有所帮助!

Angular的:host、:host-context、::ng-deep选择器Angular的:host、:host-context、::ng-deep选择器May 31, 2022 am 11:08 AM

本篇文章带大家深入了解一下angular中的几个特殊选择器:host、:host-context、::ng-deep,希望对大家有所帮助!

深入了解angular中的@Component装饰器深入了解angular中的@Component装饰器May 27, 2022 pm 08:13 PM

Component是Directive的子类,它是一个装饰器,用于把某个类标记为Angular组件。下面本篇文章就来带大家深入了解angular中的@Component装饰器,希望对大家有所帮助。

See all articles

Hot AI Tools

Undresser.AI Undress

Undresser.AI Undress

AI-powered app for creating realistic nude photos

AI Clothes Remover

AI Clothes Remover

Online AI tool for removing clothes from photos.

Undress AI Tool

Undress AI Tool

Undress images for free

Clothoff.io

Clothoff.io

AI clothes remover

AI Hentai Generator

AI Hentai Generator

Generate AI Hentai for free.

Hot Article

R.E.P.O. Energy Crystals Explained and What They Do (Yellow Crystal)
2 weeks agoBy尊渡假赌尊渡假赌尊渡假赌
R.E.P.O. Best Graphic Settings
2 weeks agoBy尊渡假赌尊渡假赌尊渡假赌
R.E.P.O. How to Fix Audio if You Can't Hear Anyone
2 weeks agoBy尊渡假赌尊渡假赌尊渡假赌

Hot Tools

PhpStorm Mac version

PhpStorm Mac version

The latest (2018.2.1) professional PHP integrated development tool

VSCode Windows 64-bit Download

VSCode Windows 64-bit Download

A free and powerful IDE editor launched by Microsoft

WebStorm Mac version

WebStorm Mac version

Useful JavaScript development tools

Dreamweaver CS6

Dreamweaver CS6

Visual web development tools

SublimeText3 Mac version

SublimeText3 Mac version

God-level code editing software (SublimeText3)