tldr/pages.tr/common/ng.md

37 lines
693 B
Markdown
Raw Blame History

This file contains ambiguous Unicode characters!

This file contains ambiguous Unicode characters that may be confused with others in your current locale. If your use case is intentional and legitimate, you can safely ignore this warning. Use the Escape button to highlight these characters.

# ng
> Angular uygulamaları oluşturup yönetmek için bir Komut Satırı Arayüzü (CLI).
> Daha fazla bilgi için: <https://angular.io/cli>.
- Bir klasörün içinde yeni bir Angular uygulaması oluştur:
`ng new {{proje_ismi}}`
- Bir uygulamaya yeni bir komponent ekle:
`ng generate component {{komponent_ismi}}`
- Bir uygulamaya yeni bir sınıf ekle:
`ng generate class {{sınıf_ismi}}`
- Bir uygulamaya yeni bir direktif ekle:
`ng generate directive {{direktif_ismi}}`
- Uygulamayı çalıştır ve bir sunucu üzerinden yayınla:
`ng serve`
- Uygulamayı derle:
`ng build`
- Testleri çalıştır:
`ng test`
- Angular kurulumunun versiyonunu kontrol et:
`ng version`