У нас вы можете посмотреть бесплатно Creating angular 6 project или скачать в максимальном доступном качестве, видео которое было загружено на ютуб. Для загрузки выберите вариант из формы ниже:
Если кнопки скачивания не
загрузились
НАЖМИТЕ ЗДЕСЬ или обновите страницу
Если возникают проблемы со скачиванием видео, пожалуйста напишите в поддержку по адресу внизу
страницы.
Спасибо за использование сервиса ClipSaver.ru
This is Part 1 of Angular 6 Tutorial for beginners. In this video 1. We will set up the development environment by installing the tools required for Angular 6 development 2. Create a brand new Angular 6 project using Angular CLI Healthy diet is very important for both body and mind. We want to inspire you to cook and eat healthy. If you like Aarvi Kitchen recipes, please support by sharing, subscribing and liking. / @aarvikitchen5572 If you are a foodie like me, I am sure you will enjoy the recipes on my friend's YouTube channel. If you find them useful, please subscribe and share to support her. She's really good at what she does. / @aarvikitchen5572 Text version of the video http://csharp-video-tutorials.blogspo... Slides http://csharp-video-tutorials.blogspo... Angular 6 Tutorial • Angular 6 tutorial for beginners Angular 6 Tutorial Text Articles & Slides http://csharp-video-tutorials.blogspo... Angular, JavaScript, jQuery, Dot Net & SQL Playlists https://www.youtube.com/user/kudvenka... Pre-requisites Basic knowledge of Angular and Angular CLI If you are new to Angular, please check out our Angular 2 course and • Angular 2 tutorial for beginners Angular CRUD course • Angular CRUD tutorial If you are new to Angular CLI, please check out our Angular CLI course • Angular CLI tutorial for beginners Setting up Angular 6 Development environment Step 1 : Install Node and NPM using the link below. https://nodejs.org/en/download/ You need Node version 8.x or greater and NPM version 5.x or greater. To veriify the version of NODE and NPM you have, execute the following 2 commands using the command prompt window. Make sure you are running the command prompt as an administrator. node -v npm -v If you already have NODE and NPM installed and if you want to upgrade to the latest version simply download and run the installer again, and it will automatically update NODE and NPM to the latest version. Step 2 : Install Angular CLI. It is a command line tool that help us create angular applications quickly and easily while still following angular's best practices and conventions. It's a great tool to increase your productivity as an angular developer. If you do not have Angular CLI installed already, execute the following command and it will install the latest version. npm install -g @angular/cli If you already have Angular CLI installed, and you want to upgrade to the latest version, then execute the following command npm install -g @angular/cli@latest Step 3 : Download and install Visual Studio Code https://code.visualstudio.com/download Create a new Angular 6 project using the Angular CLI : Step 1 : Run the command prompt window as an administrator Step 2 : Execute the following command to create a new Angular 6 project. ng new Angular6Project -d Command Explanation ng - Is the Angular CLI new - For generating a new project Angular6Project - Is the name of the project -d - This is dry-run flag. This flag instructs Angular CLI just to list the files it's going to create. It does not actually create them. This is a great option, because it lets us see what files will be generated without actually generating them. In our case, we do not want test files to be generated so let's also use --skip-tests option to skip generating test files. The following generates a new Angular 6 project and all the required files. Notice, we have not used -d option, so Angular CLI will create the Angular project and all the required files. ng new Angular6Project --skip-tests Running the Angular 6 Project 1. In the command prompt window, use the following command to go to the project directory cd Angular6Project 2. Execute the following command to run the Angular 6 project. This command builds, launches your default browser and serves the application using the default port number 4200 (http://localhost:4200/) ng serve --open (short cut command : ng s -o) At this point you will see the following on the browser Welcome to Angular6Project! This message is coming from the root component AppComponent. In the generated project there are several files and folders. If you are new to these files and folders, please check out Parts 7 and 8 from Angular CLI tutorial. • Angular CLI tutorial for beginners