У нас вы можете посмотреть бесплатно Apprendre Angular - 1. Installer Angular или скачать в максимальном доступном качестве, видео которое было загружено на ютуб. Для загрузки выберите вариант из формы ниже:
Если кнопки скачивания не
загрузились
НАЖМИТЕ ЗДЕСЬ или обновите страницу
Если возникают проблемы со скачиванием видео, пожалуйста напишите в поддержку по адресу внизу
страницы.
Спасибо за использование сервиса ClipSaver.ru
Cette vidéo montre comment installer Angular. On y traitera les sujets suivants:
1. Installation de Node et NPM
2. Installion d'Angular
3. Vérification de l'installation
Ci-dessous les commande utilisées dans cette vidéo:
Installation de Node.js 12.X sur Ubuntu 20.04
=======================================
0. Installatio de curl si nécessaire:
--------------------------
Avant de commencer vérifier si curl est installé en tappant:
curl
Si vous avez un message d'erreur, installer curl avec la commande suivante
sudo apt install curl
1. Ajout PPA nodejs
----------
sudo apt-get install curl
curl -sL https://deb.nodesource.com/setup_12.x | sudo -E bash -
2. Installation de Node.js
------------------
sudo apt-get install nodejs
3. Vérification de l'installation
--------------------------
node -v
npm -v
4. Hello World - Affichage d'un message dans la console
-------------------------------
Dans un fichier nommé hello.js écrivez:
console.log('Hello World');
Pour lancer le programme:
node hello.js
5. Hello World - Servir une page HTML
--------------------------------
Dans un fichié nommé hello2.js écrivez:
var http = require('http');
http.createServer(function (req, res) {
res.writeHead(200, {'Content-Type': 'text/plain'});
res.end('Hello World
');
}).listen(3000, "127.0.0.1");
Pour lancer le programme:
node hello2.js
Vous pouvez maintenant utiliser un navigateur et vous rendre sur http://localhost:3000 pour voir le message Hello World
6. Installatio d'Angular
------------------
sudo npm install -g @angular/cli
7. Vérification de l'installtion:
---------------------
ng --version