2022-12-09 20:02:58 +00:00
< h1 align = "center" > Angular - The modern web developer's platform< / h1 >
2017-07-11 18:48:37 +00:00
2019-08-09 17:15:27 +00:00
< p align = "center" >
2024-04-07 16:14:12 +00:00
< img src = "adev/src/assets/images/press-kit/angular_icon_gradient.gif" alt = "angular-logo" width = "120px" height = "120px" / >
2019-08-09 17:15:27 +00:00
< br >
2023-07-03 08:12:26 +00:00
< em > Angular is a development platform for building mobile and desktop web applications
< br > using TypeScript/JavaScript and other languages.< / em >
2019-08-09 17:15:27 +00:00
< br >
< / p >
2016-03-25 06:10:24 +00:00
2019-08-09 17:15:27 +00:00
< p align = "center" >
2023-11-10 07:21:04 +00:00
< a href = "https://angular.dev/" > < strong > angular.dev< / strong > < / a >
2019-08-09 17:15:27 +00:00
< br >
< / p >
2015-03-06 17:53:39 +00:00
2019-08-09 17:15:27 +00:00
< p align = "center" >
< a href = "CONTRIBUTING.md" > Contributing Guidelines< / a >
·
< a href = "https://github.com/angular/angular/issues" > Submit an Issue< / a >
·
2024-05-23 18:41:17 +00:00
< a href = "https://blog.angular.dev/" > Blog< / a >
2019-08-09 17:15:27 +00:00
< br >
< br >
< / p >
< p align = "center" >
< a href = "https://www.npmjs.com/@angular/core" >
< img src = "https://img.shields.io/npm/v/@angular/core.svg?logo=npm&logoColor=fff&label=NPM+package&color=limegreen" alt = "Angular on npm" / >
< / a >
< / p >
< hr >
## Documentation
Get started with Angular, learn the fundamentals and explore advanced topics on our documentation website.
- [Getting Started][quickstart]
- [Architecture][architecture]
- [Components and Templates][componentstemplates]
- [Forms][forms]
- [API][api]
### Advanced
- [Angular Elements][angularelements]
- [Server Side Rendering][ssr]
- [Schematics][schematics]
- [Lazy Loading][lazyloading]
2022-03-31 02:40:24 +00:00
- [Animations][animations]
2019-08-09 17:15:27 +00:00
2024-01-25 17:05:49 +00:00
### Local Development
2024-04-29 17:33:40 +00:00
To contribute to the Angular Docs, check out the [Angular.dev README ](adev/README.md )
2024-01-25 17:05:49 +00:00
2019-08-09 17:15:27 +00:00
## Development Setup
### Prerequisites
- Install [Node.js] which includes [Node Package Manager][npm]
### Setting Up a Project
2020-11-06 06:57:34 +00:00
Install the Angular CLI globally:
2019-08-09 17:15:27 +00:00
```
npm install -g @angular/cli
```
Create workspace:
```
ng new [PROJECT NAME]
```
Run the application:
```
cd [PROJECT NAME]
ng serve
```
2015-01-07 10:27:39 +00:00
2020-05-05 01:35:11 +00:00
Angular is cross-platform, fast, scalable, has incredible tooling, and is loved by millions.
2015-05-07 23:53:58 +00:00
## Quickstart
2015-07-03 12:54:12 +00:00
[Get started in 5 minutes][quickstart].
2015-01-10 00:29:34 +00:00
2019-08-09 17:15:27 +00:00
## Ecosystem
< p >
2024-06-14 21:23:00 +00:00
< img src = "/contributing-docs/images/angular-ecosystem-logos.png" alt = "angular ecosystem logos" width = "500px" height = "auto" >
2019-08-09 17:15:27 +00:00
< / p >
- [Angular Command Line (CLI)][cli]
- [Angular Material][angularmaterial]
2018-05-03 20:26:12 +00:00
## Changelog
2019-08-15 18:39:44 +00:00
[Learn about the latest improvements][changelog].
2018-05-03 20:26:12 +00:00
2019-08-09 17:15:27 +00:00
## Upgrading
2024-05-23 20:12:12 +00:00
Check out our [upgrade guide ](https://angular.dev/update-guide/ ) to find out the best way to upgrade your project.
2019-08-09 17:15:27 +00:00
## Contributing
### Contributing Guidelines
2022-10-08 04:32:49 +00:00
Read through our [contributing guidelines][contributing] to learn about our submission process, coding rules, and more.
2019-08-09 17:15:27 +00:00
### Want to Help?
2022-10-08 04:32:49 +00:00
Want to report a bug, contribute some code, or improve the documentation? Excellent! Read up on our guidelines for [contributing][contributing] and then check out one of our issues labeled as < kbd > [help wanted](https://github.com/angular/angular/labels/help%20wanted)< / kbd > or < kbd > [good first issue](https://github.com/angular/angular/labels/good%20first%20issue)< / kbd > .
2019-08-09 17:15:27 +00:00
### Code of Conduct
Help us keep Angular open and inclusive. Please read and follow our [Code of Conduct][codeofconduct].
## Community
Join the conversation and help the community.
2023-10-29 11:16:37 +00:00
- [X (formerly Twitter)][X (formerly Twitter)]
2025-01-22 12:41:39 +00:00
- [Bluesky][bluesky]
2021-03-05 11:26:38 +00:00
- [Discord][discord]
- [YouTube][youtube]
- [StackOverflow][stackoverflow]
2019-08-09 17:15:27 +00:00
- Find a Local [Meetup][meetup]
[](https://www.github.com/angular/angular)
2014-09-28 20:55:01 +00:00
2019-08-09 17:15:27 +00:00
**Love Angular? Give our repo a star :star: :arrow_up:.**
2014-09-28 20:55:01 +00:00
2019-08-09 17:15:27 +00:00
[contributing]: CONTRIBUTING.md
2023-11-10 07:21:04 +00:00
[quickstart]: https://angular.dev/tutorials/learn-angular
2019-08-09 17:15:27 +00:00
[changelog]: CHANGELOG.md
2023-11-10 07:21:04 +00:00
[ng]: https://angular.dev
[documentation]: https://angular.dev/overview
2025-05-20 13:11:40 +00:00
[angularmaterial]: https://material.angular.dev/
2023-11-10 07:21:04 +00:00
[cli]: https://angular.dev/tools/cli
[architecture]: https://angular.dev/essentials
2024-04-01 17:45:11 +00:00
[componentstemplates]: https://angular.dev/tutorials/learn-angular/1-components-in-angular
[forms]: https://angular.dev/tutorials/learn-angular/15-forms
2023-11-10 07:21:04 +00:00
[api]: https://angular.dev/api
[angularelements]: https://angular.dev/guide/elements
[ssr]: https://angular.dev/guide/ssr
[schematics]: https://angular.dev/tools/cli/schematics
[lazyloading]: https://angular.dev/guide/ngmodules/lazy-loading
2019-08-09 17:15:27 +00:00
[node.js]: https://nodejs.org/
[npm]: https://www.npmjs.com/get-npm
[codeofconduct]: CODE_OF_CONDUCT.md
2023-10-29 11:16:37 +00:00
[X (formerly Twitter)]: https://www.twitter.com/angular
2025-01-22 12:41:39 +00:00
[bluesky]: https://bsky.app/profile/angular.dev
2021-03-05 11:26:38 +00:00
[discord]: https://discord.gg/angular
[stackoverflow]: https://stackoverflow.com/questions/tagged/angular
[youtube]: https://youtube.com/angular
2021-12-30 15:32:48 +00:00
[meetup]: https://www.meetup.com/find/?keywords=angular
2023-11-10 07:21:04 +00:00
[animations]: https://angular.dev/guide/animations