Skip to content

Commit e78420f

Browse files
author
Saiful
committed
roadmap
1 parent 2111300 commit e78420f

File tree

4 files changed

+124
-1
lines changed

4 files changed

+124
-1
lines changed

.gitignore

+6
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
.DS_Store
2+
._*
3+
Thumbs.db
4+
*.sublime-project
5+
*.sublime-workspace
6+
.idea

README.md

+118-1
Original file line numberDiff line numberDiff line change
@@ -1 +1,118 @@
1-
# angular-developer-roadmap
1+
# Angular Developer Roadmap
2+
3+
This project aims to collect the most common / important concepts one should learn to become an Angular developer.
4+
<br>
5+
Inspired by ["Web Developer Roadmap"](https://github.com/kamranahmedse/developer-roadmap) and ["React Developer Roadmap"](https://github.com/adam-golab/react-developer-roadmap).
6+
7+
## Roadmap
8+
9+
![Roadmap](./angular-developer-roadmap.png)
10+
11+
## Download
12+
13+
Get a [PDF version](./images/angular-developer-roadmap.pdf).
14+
15+
## Topics covered + suggested resources
16+
17+
1. The basics:
18+
- HTML
19+
- [marksheet.io](https://marksheet.io/)
20+
- [MDN on HTML](https://developer.mozilla.org/en-US/docs/Web/HTML)
21+
- CSS
22+
- [marksheet.io](https://marksheet.io/)
23+
- [MDN on CSS](https://developer.mozilla.org/en-US/docs/Web/CSS)
24+
- JavaScript
25+
- ["You Don't Know JS"](https://github.com/getify/You-Dont-Know-JS)
26+
- [NodeSchool.io](https://nodeschool.io/)
27+
- [ES6 Overview in 350 Bullet Points](https://ponyfoo.com/articles/es6)
28+
1. General Development Skills
29+
- GIT
30+
- ["Learn Git Branching"](https://learngitbranching.js.org/)
31+
- HTTP/HTTPS
32+
- Learn to search for solutions
33+
- Terminal usage
34+
- Data Structures and Algorithms
35+
- Design Patterns
36+
1. Build tools
37+
- Package Managers
38+
- [npm](https://www.npmjs.com/)
39+
- [Yarn](https://yarnpkg.com/lang/en/)
40+
- Angular CLI
41+
- [Angular CLI Wiki](https://github.com/angular/angular-cli/wiki)
42+
- [Bazel](https://bazel.build/)
43+
- [Rollup](https://rollupjs.org/guide/en)
44+
- Task runners
45+
- [npm scripts](https://medium.freecodecamp.org/introduction-to-npm-scripts-1dbb2ae01633)
46+
- [gulp](https://gulpjs.com/)
47+
1. Styling
48+
- CSS Preprocessors
49+
- [Sass/SCSS](https://sass-lang.com/guide)
50+
- [PostCSS](https://postcss.org/)
51+
- [Less](http://lesscss.org/)
52+
- CSS Frameworks
53+
- [Bootstrap](https://getbootstrap.com/)
54+
- [Zurb Foundation](https://foundation.zurb.com/)
55+
- [Bulma](https://bulma.io/)
56+
- [Semantic UI](https://semantic-ui.com/)
57+
- [Tailwind CSS](https://tailwindcss.com/)
58+
- Design Systems
59+
- [Angular Material](https://material.angular.io/)
60+
- [Clarity Design System](https://vmware.github.io/clarity/)
61+
- [Ant Design](https://ng.ant.design/docs/introduce/en)
62+
1. Architecture
63+
- [Schematics](https://www.npmjs.com/package/@angular-devkit/schematics)
64+
- [Building Libraries](https://medium.com/@tomsu/how-to-build-a-library-for-angular-apps-4f9b38b0ed11)
65+
- [@angular/elements](https://angular.io/guide/elements)
66+
1. Coding style
67+
- [Angular Styleguide](https://angular.io/guide/styleguide)
68+
- [TSLint](https://palantir.github.io/tslint/)
69+
- [Prettier](https://prettier.io/)
70+
1. Fundamental 3rd parties
71+
- TypeScript
72+
- ["TypeScript Deep Dive"](https://github.com/basarat/typescript-book)
73+
- [Typescript Docs](https://www.typescriptlang.org/docs/)
74+
- RxJS
75+
- [The introduction to Reactive Programming](https://gist.github.com/staltz/868e7e9bc2a7b8c1f754)
76+
- [RxJS manual](http://reactivex.io/rxjs/manual/overview.html#introduction)
77+
- [RxJS In-Depth (video)](https://www.youtube.com/watch?v=KOOT7BArVHQ)
78+
1. State Management
79+
- [@ngrx](https://github.com/ngrx/platform/blob/master/docs/store/README.md)
80+
- [/effects](https://github.com/ngrx/platform/blob/master/docs/effects/README.md)
81+
- [/entity](https://github.com/ngrx/platform/tree/master/docs/entity/README.md)
82+
- [ngrx-data](https://github.com/johnpapa/angular-ngrx-data)
83+
- [NGXS](https://ngxs.gitbook.io/ngxs/)
84+
1. Progressive Web Apps
85+
- [@angular/pwa](https://angular.io/guide/service-worker-getting-started)
86+
- [Workbox](https://developers.google.com/web/tools/workbox/)
87+
1. Utility Libraries
88+
- [Lodash](https://lodash.com/)
89+
- [Moment.js](https://momentjs.com/)
90+
1. Testing
91+
- Unit Testing
92+
- [Jasmine](https://jasmine.github.io/)
93+
- [Karma](http://karma-runner.github.io/2.0/index.html)
94+
- [Jest](http://jestjs.io/)
95+
- E2E Testing
96+
- [Protractor](https://www.protractortest.org/#/)
97+
- [cypress.io](https://www.cypress.io/)
98+
1. Non-browser Environments
99+
- Mobile
100+
- @angular/pwa (`ng add @angular/pwa`)
101+
- [NativeScript](https://www.nativescript.org/)
102+
- [Ionic](https://ionicframework.com/)
103+
- [Angular Universal](https://universal.angular.io/)
104+
- [Electron](https://electronjs.org/)
105+
106+
## Spread the word
107+
108+
If you've found this list useful [share it on Twitter](https://twitter.com/intent/tweet?url=https://github.com/sulco/angular-developer-roadmap) or other places!
109+
110+
## Contributing
111+
112+
If you want to contribute to this project to make it more helpful for other Angular developers, your help is very welcome!
113+
114+
Just file an issue, better yet: submit a PR! 🙂
115+
116+
## License
117+
118+
[![License: CC BY-NC-SA 4.0](https://img.shields.io/badge/License-CC%20BY--NC--SA%204.0-lightgrey.svg)](https://creativecommons.org/licenses/by-nc-sa/4.0/)

images/angular-developer-roadmap.png

721 KB
Loading
244 KB
Binary file not shown.

0 commit comments

Comments
 (0)