Angular v14.1 has been releasedใ
And just like that, v14.1 is here!
— Angular (@angular) July 20, 2022
โ CommonModule directives & pipes are marked standalone ๐
โ Three new extended diagnostics to improve your developer experience โก๏ธ
โ No installing the CLI globally, get started with `npm init @angular new-app` ๐ฅบ https://t.co/VKm5FU4Y7R
Personally, I was really looking forward to the ability to run ng new
without installing Angular CLI
globally. This is a nice, subtle improvement. Previously, you could use npx
to do this without a global install, but having it even simpler is great.
So, I tried it out right awayใ
npm init @angular new-app
You might be asked about routing and other options, but just proceed and you’ll have your appใ
new-app
โโโ README.md
โโโ angular.json
โโโ karma.conf.js
โโโ node_modules
โโโ package-lock.json
โโโ package.json
โโโ src
โโโ tsconfig.app.json
โโโ tsconfig.json
โโโ tsconfig.spec.json
Nice! Convenient๏ผ