├── .gitignore ├── AI └── Math for AI and ML │ └── Chapters ├── LICENSE ├── README.md ├── blockchainDevelopment └── roadmap.md ├── embeddedSystems └── EmbeddedSystems.md ├── interview ├── Chapters.md └── Chapters │ ├── Algorithms.md │ ├── BehavioralAspects.md │ ├── CloudComputing.md │ ├── CodingChallenges.md │ ├── CodingProblemSolving.md │ ├── ContinousIntegration.md │ ├── DataStructures.md │ ├── InterviewStrategies.md │ ├── Introduction.md │ ├── MockInterviews.md │ ├── ProgrammingLanguages.md │ ├── SoftwareTesting.md │ ├── SystemDesign.md │ └── VersionControl.md ├── math └── math for computer science │ ├── chapters + links.md │ └── full-roadmap.md ├── operatingSystems └── linux │ ├── Linux.md │ ├── chapters │ ├── commandLine.md │ ├── fileSystem.md │ ├── logging.md │ ├── networking.md │ ├── packageManagement.md │ ├── priviledges.md │ ├── processManagement.md │ ├── security.md │ ├── shellScripting.md │ ├── storage.md │ ├── textFiles.md │ ├── understandLinux.md │ └── usersAndGroups.md │ └── tldr │ ├── TLDR.md │ ├── commandLine.md │ ├── packageManagement.md │ └── understandLinux.md ├── programmingLanguages ├── javascript │ ├── Javascript-chapters.md │ └── Javascript-full.md └── swift │ ├── Swift Chapters.md │ └── Swift Chapters │ ├── About the Swift Programming Language.md │ ├── About this Roadmap.md │ ├── Accessibility in Swift - VoiceOver.md │ ├── ActionSheet and Alerts.md │ ├── Actors.md │ ├── Adapting your code to Dark Mode.md │ ├── Advanced Combine, Futures and Promises.md │ ├── AppStorage in Swift.md │ ├── Async and Await functions.md │ ├── Closures.md │ ├── CloudKit.md │ ├── Codable type alias, Encodable and Decodable protocols.md │ ├── Complex view methods - onAppear, onDisappear functions and usages.md │ ├── Configuring Firebase to deploy your own app, and other developer features.md │ ├── ContextMenu.md │ ├── Creating and Manipulating views.md │ ├── Creating custom Protocols in Swift.md │ ├── Custom Models.md │ ├── Customizing features in SwiftUI.md │ ├── Documenting your Swift Code.md │ ├── Downloading data from the API in Swift.md │ ├── Error Handling.md │ ├── Extracting Functions, Views and Subviews in Swift.md │ ├── Gestures and Animations; Transition.md │ ├── Global Actors.md │ ├── Haptics and Sound Effects.md │ ├── Lists.md │ ├── MVVM Design Pattern.md │ ├── Multi-threading made simple in Swift.md │ ├── NSCache in Swift.md │ ├── NavigationStack.md │ ├── Other User Inputs - Steppers and Sliders.md │ ├── PhotosPicker.md │ ├── Pickers - ColorPickers, DatePicker, default Picker and Menus.md │ ├── Push Notifications.md │ ├── Recap - Swiftful Thinking mini-project app.md │ ├── Search Features.md │ ├── Sharing View States.md │ ├── Simpler way of sharing State between Parent and Child through Binding.md │ ├── State management in Swift.md │ ├── Swift FocusState.md │ ├── Swift Fundamentals.md │ ├── Swift Sheets.md │ ├── TabView and Badges in SwiftUI.md │ ├── Task.md │ ├── Testing - Unit Testing and UI Testing.md │ ├── The End.md │ ├── The Sendable Protocol.md │ ├── TimelineView - creating custom, complex, multi-step animations.md │ ├── Toolbar in Swift.md │ ├── Transitioning slowly to Concurrency - AsyncImage.md │ ├── Understanding Xcode.md │ ├── User Inputs - Text Inputs, Toggles, and TextSelection.md │ ├── Using FileManager in Swift.md │ ├── Using KeyPaths in Swift.md │ ├── Using Timer and .onReceive.md │ ├── Using and Manipulating Core Data - CRUD Operations.md │ └── What is Concurrency.md └── web ├── backend └── Backend Developement.md ├── frontend ├── Frontend Development.md ├── React │ ├── Chapters │ │ ├── Advanced Props and State management.md │ │ ├── Advanced concepts.md │ │ ├── Api usage.md │ │ ├── Explore horizons.md │ │ ├── Hooks.md │ │ ├── Introduction.md │ │ ├── JSX.md │ │ ├── Performance.md │ │ ├── Prerequisites.md │ │ ├── Pure functions.md │ │ ├── React Components.md │ │ ├── React frameworks.md │ │ ├── React libraries (not mentioned yet).md │ │ ├── React programming patterns.md │ │ ├── ReactDOM.md │ │ ├── Routes.md │ │ ├── Set Up.md │ │ ├── Style.md │ │ ├── Testing.md │ │ └── Why React.md │ └── React Chapters.md └── svelte │ ├── Svelte.md │ └── chapters │ ├── data.md │ ├── fundamentalsOfSvelte.md │ ├── gettingStarted.md │ ├── libraries.md │ ├── otherConecpts.md │ ├── routing.md │ ├── specialElements.md │ ├── stores.md │ ├── styling.md │ └── understandingSvelte.md └── fullstack └── Nextjs ├── Chapters ├── Arhitecture.md ├── Data fetching & Caching.md ├── Introduction.md ├── Layouts & Links.md ├── Nextjs 14.md ├── Pages & Routes.md ├── Performance.md ├── Practice projects.md ├── Rendering.md ├── SEO.md ├── Set up.md ├── Specific usecases.md ├── Static & Dynamic Rendering.md ├── Styling.md ├── Testing.md └── Why Nextjs?.md └── Nextjs Chapters.md /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NavigoLearn/RoadmapsMarkdown/HEAD/.gitignore -------------------------------------------------------------------------------- /AI/Math for AI and ML/Chapters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NavigoLearn/RoadmapsMarkdown/HEAD/AI/Math for AI and ML/Chapters -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NavigoLearn/RoadmapsMarkdown/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NavigoLearn/RoadmapsMarkdown/HEAD/README.md -------------------------------------------------------------------------------- /blockchainDevelopment/roadmap.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NavigoLearn/RoadmapsMarkdown/HEAD/blockchainDevelopment/roadmap.md -------------------------------------------------------------------------------- /embeddedSystems/EmbeddedSystems.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NavigoLearn/RoadmapsMarkdown/HEAD/embeddedSystems/EmbeddedSystems.md -------------------------------------------------------------------------------- /interview/Chapters.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NavigoLearn/RoadmapsMarkdown/HEAD/interview/Chapters.md -------------------------------------------------------------------------------- /interview/Chapters/Algorithms.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NavigoLearn/RoadmapsMarkdown/HEAD/interview/Chapters/Algorithms.md -------------------------------------------------------------------------------- /interview/Chapters/BehavioralAspects.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NavigoLearn/RoadmapsMarkdown/HEAD/interview/Chapters/BehavioralAspects.md -------------------------------------------------------------------------------- /interview/Chapters/CloudComputing.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NavigoLearn/RoadmapsMarkdown/HEAD/interview/Chapters/CloudComputing.md -------------------------------------------------------------------------------- /interview/Chapters/CodingChallenges.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NavigoLearn/RoadmapsMarkdown/HEAD/interview/Chapters/CodingChallenges.md -------------------------------------------------------------------------------- /interview/Chapters/CodingProblemSolving.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NavigoLearn/RoadmapsMarkdown/HEAD/interview/Chapters/CodingProblemSolving.md -------------------------------------------------------------------------------- /interview/Chapters/ContinousIntegration.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NavigoLearn/RoadmapsMarkdown/HEAD/interview/Chapters/ContinousIntegration.md -------------------------------------------------------------------------------- /interview/Chapters/DataStructures.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NavigoLearn/RoadmapsMarkdown/HEAD/interview/Chapters/DataStructures.md -------------------------------------------------------------------------------- /interview/Chapters/InterviewStrategies.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NavigoLearn/RoadmapsMarkdown/HEAD/interview/Chapters/InterviewStrategies.md -------------------------------------------------------------------------------- /interview/Chapters/Introduction.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NavigoLearn/RoadmapsMarkdown/HEAD/interview/Chapters/Introduction.md -------------------------------------------------------------------------------- /interview/Chapters/MockInterviews.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NavigoLearn/RoadmapsMarkdown/HEAD/interview/Chapters/MockInterviews.md -------------------------------------------------------------------------------- /interview/Chapters/ProgrammingLanguages.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NavigoLearn/RoadmapsMarkdown/HEAD/interview/Chapters/ProgrammingLanguages.md -------------------------------------------------------------------------------- /interview/Chapters/SoftwareTesting.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NavigoLearn/RoadmapsMarkdown/HEAD/interview/Chapters/SoftwareTesting.md -------------------------------------------------------------------------------- /interview/Chapters/SystemDesign.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NavigoLearn/RoadmapsMarkdown/HEAD/interview/Chapters/SystemDesign.md -------------------------------------------------------------------------------- /interview/Chapters/VersionControl.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NavigoLearn/RoadmapsMarkdown/HEAD/interview/Chapters/VersionControl.md -------------------------------------------------------------------------------- /math/math for computer science/chapters + links.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NavigoLearn/RoadmapsMarkdown/HEAD/math/math for computer science/chapters + links.md -------------------------------------------------------------------------------- /math/math for computer science/full-roadmap.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NavigoLearn/RoadmapsMarkdown/HEAD/math/math for computer science/full-roadmap.md -------------------------------------------------------------------------------- /operatingSystems/linux/Linux.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NavigoLearn/RoadmapsMarkdown/HEAD/operatingSystems/linux/Linux.md -------------------------------------------------------------------------------- /operatingSystems/linux/chapters/commandLine.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NavigoLearn/RoadmapsMarkdown/HEAD/operatingSystems/linux/chapters/commandLine.md -------------------------------------------------------------------------------- /operatingSystems/linux/chapters/fileSystem.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NavigoLearn/RoadmapsMarkdown/HEAD/operatingSystems/linux/chapters/fileSystem.md -------------------------------------------------------------------------------- /operatingSystems/linux/chapters/logging.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NavigoLearn/RoadmapsMarkdown/HEAD/operatingSystems/linux/chapters/logging.md -------------------------------------------------------------------------------- /operatingSystems/linux/chapters/networking.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NavigoLearn/RoadmapsMarkdown/HEAD/operatingSystems/linux/chapters/networking.md -------------------------------------------------------------------------------- /operatingSystems/linux/chapters/packageManagement.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NavigoLearn/RoadmapsMarkdown/HEAD/operatingSystems/linux/chapters/packageManagement.md -------------------------------------------------------------------------------- /operatingSystems/linux/chapters/priviledges.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NavigoLearn/RoadmapsMarkdown/HEAD/operatingSystems/linux/chapters/priviledges.md -------------------------------------------------------------------------------- /operatingSystems/linux/chapters/processManagement.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NavigoLearn/RoadmapsMarkdown/HEAD/operatingSystems/linux/chapters/processManagement.md -------------------------------------------------------------------------------- /operatingSystems/linux/chapters/security.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NavigoLearn/RoadmapsMarkdown/HEAD/operatingSystems/linux/chapters/security.md -------------------------------------------------------------------------------- /operatingSystems/linux/chapters/shellScripting.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NavigoLearn/RoadmapsMarkdown/HEAD/operatingSystems/linux/chapters/shellScripting.md -------------------------------------------------------------------------------- /operatingSystems/linux/chapters/storage.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NavigoLearn/RoadmapsMarkdown/HEAD/operatingSystems/linux/chapters/storage.md -------------------------------------------------------------------------------- /operatingSystems/linux/chapters/textFiles.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NavigoLearn/RoadmapsMarkdown/HEAD/operatingSystems/linux/chapters/textFiles.md -------------------------------------------------------------------------------- /operatingSystems/linux/chapters/understandLinux.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NavigoLearn/RoadmapsMarkdown/HEAD/operatingSystems/linux/chapters/understandLinux.md -------------------------------------------------------------------------------- /operatingSystems/linux/chapters/usersAndGroups.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NavigoLearn/RoadmapsMarkdown/HEAD/operatingSystems/linux/chapters/usersAndGroups.md -------------------------------------------------------------------------------- /operatingSystems/linux/tldr/TLDR.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NavigoLearn/RoadmapsMarkdown/HEAD/operatingSystems/linux/tldr/TLDR.md -------------------------------------------------------------------------------- /operatingSystems/linux/tldr/commandLine.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NavigoLearn/RoadmapsMarkdown/HEAD/operatingSystems/linux/tldr/commandLine.md -------------------------------------------------------------------------------- /operatingSystems/linux/tldr/packageManagement.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NavigoLearn/RoadmapsMarkdown/HEAD/operatingSystems/linux/tldr/packageManagement.md -------------------------------------------------------------------------------- /operatingSystems/linux/tldr/understandLinux.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NavigoLearn/RoadmapsMarkdown/HEAD/operatingSystems/linux/tldr/understandLinux.md -------------------------------------------------------------------------------- /programmingLanguages/javascript/Javascript-chapters.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NavigoLearn/RoadmapsMarkdown/HEAD/programmingLanguages/javascript/Javascript-chapters.md -------------------------------------------------------------------------------- /programmingLanguages/javascript/Javascript-full.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NavigoLearn/RoadmapsMarkdown/HEAD/programmingLanguages/javascript/Javascript-full.md -------------------------------------------------------------------------------- /programmingLanguages/swift/Swift Chapters.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NavigoLearn/RoadmapsMarkdown/HEAD/programmingLanguages/swift/Swift Chapters.md -------------------------------------------------------------------------------- /programmingLanguages/swift/Swift Chapters/About the Swift Programming Language.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NavigoLearn/RoadmapsMarkdown/HEAD/programmingLanguages/swift/Swift Chapters/About the Swift Programming Language.md -------------------------------------------------------------------------------- /programmingLanguages/swift/Swift Chapters/About this Roadmap.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NavigoLearn/RoadmapsMarkdown/HEAD/programmingLanguages/swift/Swift Chapters/About this Roadmap.md -------------------------------------------------------------------------------- /programmingLanguages/swift/Swift Chapters/Accessibility in Swift - VoiceOver.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NavigoLearn/RoadmapsMarkdown/HEAD/programmingLanguages/swift/Swift Chapters/Accessibility in Swift - VoiceOver.md -------------------------------------------------------------------------------- /programmingLanguages/swift/Swift Chapters/ActionSheet and Alerts.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NavigoLearn/RoadmapsMarkdown/HEAD/programmingLanguages/swift/Swift Chapters/ActionSheet and Alerts.md -------------------------------------------------------------------------------- /programmingLanguages/swift/Swift Chapters/Actors.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NavigoLearn/RoadmapsMarkdown/HEAD/programmingLanguages/swift/Swift Chapters/Actors.md -------------------------------------------------------------------------------- /programmingLanguages/swift/Swift Chapters/Adapting your code to Dark Mode.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NavigoLearn/RoadmapsMarkdown/HEAD/programmingLanguages/swift/Swift Chapters/Adapting your code to Dark Mode.md -------------------------------------------------------------------------------- /programmingLanguages/swift/Swift Chapters/Advanced Combine, Futures and Promises.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NavigoLearn/RoadmapsMarkdown/HEAD/programmingLanguages/swift/Swift Chapters/Advanced Combine, Futures and Promises.md -------------------------------------------------------------------------------- /programmingLanguages/swift/Swift Chapters/AppStorage in Swift.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NavigoLearn/RoadmapsMarkdown/HEAD/programmingLanguages/swift/Swift Chapters/AppStorage in Swift.md -------------------------------------------------------------------------------- /programmingLanguages/swift/Swift Chapters/Async and Await functions.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NavigoLearn/RoadmapsMarkdown/HEAD/programmingLanguages/swift/Swift Chapters/Async and Await functions.md -------------------------------------------------------------------------------- /programmingLanguages/swift/Swift Chapters/Closures.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NavigoLearn/RoadmapsMarkdown/HEAD/programmingLanguages/swift/Swift Chapters/Closures.md -------------------------------------------------------------------------------- /programmingLanguages/swift/Swift Chapters/CloudKit.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NavigoLearn/RoadmapsMarkdown/HEAD/programmingLanguages/swift/Swift Chapters/CloudKit.md -------------------------------------------------------------------------------- /programmingLanguages/swift/Swift Chapters/Codable type alias, Encodable and Decodable protocols.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NavigoLearn/RoadmapsMarkdown/HEAD/programmingLanguages/swift/Swift Chapters/Codable type alias, Encodable and Decodable protocols.md -------------------------------------------------------------------------------- /programmingLanguages/swift/Swift Chapters/Complex view methods - onAppear, onDisappear functions and usages.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NavigoLearn/RoadmapsMarkdown/HEAD/programmingLanguages/swift/Swift Chapters/Complex view methods - onAppear, onDisappear functions and usages.md -------------------------------------------------------------------------------- /programmingLanguages/swift/Swift Chapters/Configuring Firebase to deploy your own app, and other developer features.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NavigoLearn/RoadmapsMarkdown/HEAD/programmingLanguages/swift/Swift Chapters/Configuring Firebase to deploy your own app, and other developer features.md -------------------------------------------------------------------------------- /programmingLanguages/swift/Swift Chapters/ContextMenu.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NavigoLearn/RoadmapsMarkdown/HEAD/programmingLanguages/swift/Swift Chapters/ContextMenu.md -------------------------------------------------------------------------------- /programmingLanguages/swift/Swift Chapters/Creating and Manipulating views.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NavigoLearn/RoadmapsMarkdown/HEAD/programmingLanguages/swift/Swift Chapters/Creating and Manipulating views.md -------------------------------------------------------------------------------- /programmingLanguages/swift/Swift Chapters/Creating custom Protocols in Swift.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NavigoLearn/RoadmapsMarkdown/HEAD/programmingLanguages/swift/Swift Chapters/Creating custom Protocols in Swift.md -------------------------------------------------------------------------------- /programmingLanguages/swift/Swift Chapters/Custom Models.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NavigoLearn/RoadmapsMarkdown/HEAD/programmingLanguages/swift/Swift Chapters/Custom Models.md -------------------------------------------------------------------------------- /programmingLanguages/swift/Swift Chapters/Customizing features in SwiftUI.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NavigoLearn/RoadmapsMarkdown/HEAD/programmingLanguages/swift/Swift Chapters/Customizing features in SwiftUI.md -------------------------------------------------------------------------------- /programmingLanguages/swift/Swift Chapters/Documenting your Swift Code.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NavigoLearn/RoadmapsMarkdown/HEAD/programmingLanguages/swift/Swift Chapters/Documenting your Swift Code.md -------------------------------------------------------------------------------- /programmingLanguages/swift/Swift Chapters/Downloading data from the API in Swift.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NavigoLearn/RoadmapsMarkdown/HEAD/programmingLanguages/swift/Swift Chapters/Downloading data from the API in Swift.md -------------------------------------------------------------------------------- /programmingLanguages/swift/Swift Chapters/Error Handling.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NavigoLearn/RoadmapsMarkdown/HEAD/programmingLanguages/swift/Swift Chapters/Error Handling.md -------------------------------------------------------------------------------- /programmingLanguages/swift/Swift Chapters/Extracting Functions, Views and Subviews in Swift.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NavigoLearn/RoadmapsMarkdown/HEAD/programmingLanguages/swift/Swift Chapters/Extracting Functions, Views and Subviews in Swift.md -------------------------------------------------------------------------------- /programmingLanguages/swift/Swift Chapters/Gestures and Animations; Transition.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NavigoLearn/RoadmapsMarkdown/HEAD/programmingLanguages/swift/Swift Chapters/Gestures and Animations; Transition.md -------------------------------------------------------------------------------- /programmingLanguages/swift/Swift Chapters/Global Actors.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NavigoLearn/RoadmapsMarkdown/HEAD/programmingLanguages/swift/Swift Chapters/Global Actors.md -------------------------------------------------------------------------------- /programmingLanguages/swift/Swift Chapters/Haptics and Sound Effects.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NavigoLearn/RoadmapsMarkdown/HEAD/programmingLanguages/swift/Swift Chapters/Haptics and Sound Effects.md -------------------------------------------------------------------------------- /programmingLanguages/swift/Swift Chapters/Lists.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NavigoLearn/RoadmapsMarkdown/HEAD/programmingLanguages/swift/Swift Chapters/Lists.md -------------------------------------------------------------------------------- /programmingLanguages/swift/Swift Chapters/MVVM Design Pattern.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NavigoLearn/RoadmapsMarkdown/HEAD/programmingLanguages/swift/Swift Chapters/MVVM Design Pattern.md -------------------------------------------------------------------------------- /programmingLanguages/swift/Swift Chapters/Multi-threading made simple in Swift.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NavigoLearn/RoadmapsMarkdown/HEAD/programmingLanguages/swift/Swift Chapters/Multi-threading made simple in Swift.md -------------------------------------------------------------------------------- /programmingLanguages/swift/Swift Chapters/NSCache in Swift.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NavigoLearn/RoadmapsMarkdown/HEAD/programmingLanguages/swift/Swift Chapters/NSCache in Swift.md -------------------------------------------------------------------------------- /programmingLanguages/swift/Swift Chapters/NavigationStack.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NavigoLearn/RoadmapsMarkdown/HEAD/programmingLanguages/swift/Swift Chapters/NavigationStack.md -------------------------------------------------------------------------------- /programmingLanguages/swift/Swift Chapters/Other User Inputs - Steppers and Sliders.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NavigoLearn/RoadmapsMarkdown/HEAD/programmingLanguages/swift/Swift Chapters/Other User Inputs - Steppers and Sliders.md -------------------------------------------------------------------------------- /programmingLanguages/swift/Swift Chapters/PhotosPicker.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NavigoLearn/RoadmapsMarkdown/HEAD/programmingLanguages/swift/Swift Chapters/PhotosPicker.md -------------------------------------------------------------------------------- /programmingLanguages/swift/Swift Chapters/Pickers - ColorPickers, DatePicker, default Picker and Menus.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NavigoLearn/RoadmapsMarkdown/HEAD/programmingLanguages/swift/Swift Chapters/Pickers - ColorPickers, DatePicker, default Picker and Menus.md -------------------------------------------------------------------------------- /programmingLanguages/swift/Swift Chapters/Push Notifications.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NavigoLearn/RoadmapsMarkdown/HEAD/programmingLanguages/swift/Swift Chapters/Push Notifications.md -------------------------------------------------------------------------------- /programmingLanguages/swift/Swift Chapters/Recap - Swiftful Thinking mini-project app.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NavigoLearn/RoadmapsMarkdown/HEAD/programmingLanguages/swift/Swift Chapters/Recap - Swiftful Thinking mini-project app.md -------------------------------------------------------------------------------- /programmingLanguages/swift/Swift Chapters/Search Features.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NavigoLearn/RoadmapsMarkdown/HEAD/programmingLanguages/swift/Swift Chapters/Search Features.md -------------------------------------------------------------------------------- /programmingLanguages/swift/Swift Chapters/Sharing View States.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NavigoLearn/RoadmapsMarkdown/HEAD/programmingLanguages/swift/Swift Chapters/Sharing View States.md -------------------------------------------------------------------------------- /programmingLanguages/swift/Swift Chapters/Simpler way of sharing State between Parent and Child through Binding.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NavigoLearn/RoadmapsMarkdown/HEAD/programmingLanguages/swift/Swift Chapters/Simpler way of sharing State between Parent and Child through Binding.md -------------------------------------------------------------------------------- /programmingLanguages/swift/Swift Chapters/State management in Swift.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NavigoLearn/RoadmapsMarkdown/HEAD/programmingLanguages/swift/Swift Chapters/State management in Swift.md -------------------------------------------------------------------------------- /programmingLanguages/swift/Swift Chapters/Swift FocusState.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NavigoLearn/RoadmapsMarkdown/HEAD/programmingLanguages/swift/Swift Chapters/Swift FocusState.md -------------------------------------------------------------------------------- /programmingLanguages/swift/Swift Chapters/Swift Fundamentals.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NavigoLearn/RoadmapsMarkdown/HEAD/programmingLanguages/swift/Swift Chapters/Swift Fundamentals.md -------------------------------------------------------------------------------- /programmingLanguages/swift/Swift Chapters/Swift Sheets.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NavigoLearn/RoadmapsMarkdown/HEAD/programmingLanguages/swift/Swift Chapters/Swift Sheets.md -------------------------------------------------------------------------------- /programmingLanguages/swift/Swift Chapters/TabView and Badges in SwiftUI.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NavigoLearn/RoadmapsMarkdown/HEAD/programmingLanguages/swift/Swift Chapters/TabView and Badges in SwiftUI.md -------------------------------------------------------------------------------- /programmingLanguages/swift/Swift Chapters/Task.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NavigoLearn/RoadmapsMarkdown/HEAD/programmingLanguages/swift/Swift Chapters/Task.md -------------------------------------------------------------------------------- /programmingLanguages/swift/Swift Chapters/Testing - Unit Testing and UI Testing.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NavigoLearn/RoadmapsMarkdown/HEAD/programmingLanguages/swift/Swift Chapters/Testing - Unit Testing and UI Testing.md -------------------------------------------------------------------------------- /programmingLanguages/swift/Swift Chapters/The End.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NavigoLearn/RoadmapsMarkdown/HEAD/programmingLanguages/swift/Swift Chapters/The End.md -------------------------------------------------------------------------------- /programmingLanguages/swift/Swift Chapters/The Sendable Protocol.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NavigoLearn/RoadmapsMarkdown/HEAD/programmingLanguages/swift/Swift Chapters/The Sendable Protocol.md -------------------------------------------------------------------------------- /programmingLanguages/swift/Swift Chapters/TimelineView - creating custom, complex, multi-step animations.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NavigoLearn/RoadmapsMarkdown/HEAD/programmingLanguages/swift/Swift Chapters/TimelineView - creating custom, complex, multi-step animations.md -------------------------------------------------------------------------------- /programmingLanguages/swift/Swift Chapters/Toolbar in Swift.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NavigoLearn/RoadmapsMarkdown/HEAD/programmingLanguages/swift/Swift Chapters/Toolbar in Swift.md -------------------------------------------------------------------------------- /programmingLanguages/swift/Swift Chapters/Transitioning slowly to Concurrency - AsyncImage.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NavigoLearn/RoadmapsMarkdown/HEAD/programmingLanguages/swift/Swift Chapters/Transitioning slowly to Concurrency - AsyncImage.md -------------------------------------------------------------------------------- /programmingLanguages/swift/Swift Chapters/Understanding Xcode.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NavigoLearn/RoadmapsMarkdown/HEAD/programmingLanguages/swift/Swift Chapters/Understanding Xcode.md -------------------------------------------------------------------------------- /programmingLanguages/swift/Swift Chapters/User Inputs - Text Inputs, Toggles, and TextSelection.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NavigoLearn/RoadmapsMarkdown/HEAD/programmingLanguages/swift/Swift Chapters/User Inputs - Text Inputs, Toggles, and TextSelection.md -------------------------------------------------------------------------------- /programmingLanguages/swift/Swift Chapters/Using FileManager in Swift.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NavigoLearn/RoadmapsMarkdown/HEAD/programmingLanguages/swift/Swift Chapters/Using FileManager in Swift.md -------------------------------------------------------------------------------- /programmingLanguages/swift/Swift Chapters/Using KeyPaths in Swift.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NavigoLearn/RoadmapsMarkdown/HEAD/programmingLanguages/swift/Swift Chapters/Using KeyPaths in Swift.md -------------------------------------------------------------------------------- /programmingLanguages/swift/Swift Chapters/Using Timer and .onReceive.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NavigoLearn/RoadmapsMarkdown/HEAD/programmingLanguages/swift/Swift Chapters/Using Timer and .onReceive.md -------------------------------------------------------------------------------- /programmingLanguages/swift/Swift Chapters/Using and Manipulating Core Data - CRUD Operations.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NavigoLearn/RoadmapsMarkdown/HEAD/programmingLanguages/swift/Swift Chapters/Using and Manipulating Core Data - CRUD Operations.md -------------------------------------------------------------------------------- /programmingLanguages/swift/Swift Chapters/What is Concurrency.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NavigoLearn/RoadmapsMarkdown/HEAD/programmingLanguages/swift/Swift Chapters/What is Concurrency.md -------------------------------------------------------------------------------- /web/backend/Backend Developement.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NavigoLearn/RoadmapsMarkdown/HEAD/web/backend/Backend Developement.md -------------------------------------------------------------------------------- /web/frontend/Frontend Development.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NavigoLearn/RoadmapsMarkdown/HEAD/web/frontend/Frontend Development.md -------------------------------------------------------------------------------- /web/frontend/React/Chapters/Advanced Props and State management.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NavigoLearn/RoadmapsMarkdown/HEAD/web/frontend/React/Chapters/Advanced Props and State management.md -------------------------------------------------------------------------------- /web/frontend/React/Chapters/Advanced concepts.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NavigoLearn/RoadmapsMarkdown/HEAD/web/frontend/React/Chapters/Advanced concepts.md -------------------------------------------------------------------------------- /web/frontend/React/Chapters/Api usage.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NavigoLearn/RoadmapsMarkdown/HEAD/web/frontend/React/Chapters/Api usage.md -------------------------------------------------------------------------------- /web/frontend/React/Chapters/Explore horizons.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NavigoLearn/RoadmapsMarkdown/HEAD/web/frontend/React/Chapters/Explore horizons.md -------------------------------------------------------------------------------- /web/frontend/React/Chapters/Hooks.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NavigoLearn/RoadmapsMarkdown/HEAD/web/frontend/React/Chapters/Hooks.md -------------------------------------------------------------------------------- /web/frontend/React/Chapters/Introduction.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NavigoLearn/RoadmapsMarkdown/HEAD/web/frontend/React/Chapters/Introduction.md -------------------------------------------------------------------------------- /web/frontend/React/Chapters/JSX.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NavigoLearn/RoadmapsMarkdown/HEAD/web/frontend/React/Chapters/JSX.md -------------------------------------------------------------------------------- /web/frontend/React/Chapters/Performance.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NavigoLearn/RoadmapsMarkdown/HEAD/web/frontend/React/Chapters/Performance.md -------------------------------------------------------------------------------- /web/frontend/React/Chapters/Prerequisites.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NavigoLearn/RoadmapsMarkdown/HEAD/web/frontend/React/Chapters/Prerequisites.md -------------------------------------------------------------------------------- /web/frontend/React/Chapters/Pure functions.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NavigoLearn/RoadmapsMarkdown/HEAD/web/frontend/React/Chapters/Pure functions.md -------------------------------------------------------------------------------- /web/frontend/React/Chapters/React Components.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NavigoLearn/RoadmapsMarkdown/HEAD/web/frontend/React/Chapters/React Components.md -------------------------------------------------------------------------------- /web/frontend/React/Chapters/React frameworks.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NavigoLearn/RoadmapsMarkdown/HEAD/web/frontend/React/Chapters/React frameworks.md -------------------------------------------------------------------------------- /web/frontend/React/Chapters/React libraries (not mentioned yet).md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NavigoLearn/RoadmapsMarkdown/HEAD/web/frontend/React/Chapters/React libraries (not mentioned yet).md -------------------------------------------------------------------------------- /web/frontend/React/Chapters/React programming patterns.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NavigoLearn/RoadmapsMarkdown/HEAD/web/frontend/React/Chapters/React programming patterns.md -------------------------------------------------------------------------------- /web/frontend/React/Chapters/ReactDOM.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NavigoLearn/RoadmapsMarkdown/HEAD/web/frontend/React/Chapters/ReactDOM.md -------------------------------------------------------------------------------- /web/frontend/React/Chapters/Routes.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NavigoLearn/RoadmapsMarkdown/HEAD/web/frontend/React/Chapters/Routes.md -------------------------------------------------------------------------------- /web/frontend/React/Chapters/Set Up.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NavigoLearn/RoadmapsMarkdown/HEAD/web/frontend/React/Chapters/Set Up.md -------------------------------------------------------------------------------- /web/frontend/React/Chapters/Style.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NavigoLearn/RoadmapsMarkdown/HEAD/web/frontend/React/Chapters/Style.md -------------------------------------------------------------------------------- /web/frontend/React/Chapters/Testing.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NavigoLearn/RoadmapsMarkdown/HEAD/web/frontend/React/Chapters/Testing.md -------------------------------------------------------------------------------- /web/frontend/React/Chapters/Why React.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NavigoLearn/RoadmapsMarkdown/HEAD/web/frontend/React/Chapters/Why React.md -------------------------------------------------------------------------------- /web/frontend/React/React Chapters.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NavigoLearn/RoadmapsMarkdown/HEAD/web/frontend/React/React Chapters.md -------------------------------------------------------------------------------- /web/frontend/svelte/Svelte.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NavigoLearn/RoadmapsMarkdown/HEAD/web/frontend/svelte/Svelte.md -------------------------------------------------------------------------------- /web/frontend/svelte/chapters/data.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NavigoLearn/RoadmapsMarkdown/HEAD/web/frontend/svelte/chapters/data.md -------------------------------------------------------------------------------- /web/frontend/svelte/chapters/fundamentalsOfSvelte.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NavigoLearn/RoadmapsMarkdown/HEAD/web/frontend/svelte/chapters/fundamentalsOfSvelte.md -------------------------------------------------------------------------------- /web/frontend/svelte/chapters/gettingStarted.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NavigoLearn/RoadmapsMarkdown/HEAD/web/frontend/svelte/chapters/gettingStarted.md -------------------------------------------------------------------------------- /web/frontend/svelte/chapters/libraries.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NavigoLearn/RoadmapsMarkdown/HEAD/web/frontend/svelte/chapters/libraries.md -------------------------------------------------------------------------------- /web/frontend/svelte/chapters/otherConecpts.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NavigoLearn/RoadmapsMarkdown/HEAD/web/frontend/svelte/chapters/otherConecpts.md -------------------------------------------------------------------------------- /web/frontend/svelte/chapters/routing.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NavigoLearn/RoadmapsMarkdown/HEAD/web/frontend/svelte/chapters/routing.md -------------------------------------------------------------------------------- /web/frontend/svelte/chapters/specialElements.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NavigoLearn/RoadmapsMarkdown/HEAD/web/frontend/svelte/chapters/specialElements.md -------------------------------------------------------------------------------- /web/frontend/svelte/chapters/stores.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NavigoLearn/RoadmapsMarkdown/HEAD/web/frontend/svelte/chapters/stores.md -------------------------------------------------------------------------------- /web/frontend/svelte/chapters/styling.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NavigoLearn/RoadmapsMarkdown/HEAD/web/frontend/svelte/chapters/styling.md -------------------------------------------------------------------------------- /web/frontend/svelte/chapters/understandingSvelte.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NavigoLearn/RoadmapsMarkdown/HEAD/web/frontend/svelte/chapters/understandingSvelte.md -------------------------------------------------------------------------------- /web/fullstack/Nextjs/Chapters/Arhitecture.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NavigoLearn/RoadmapsMarkdown/HEAD/web/fullstack/Nextjs/Chapters/Arhitecture.md -------------------------------------------------------------------------------- /web/fullstack/Nextjs/Chapters/Data fetching & Caching.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NavigoLearn/RoadmapsMarkdown/HEAD/web/fullstack/Nextjs/Chapters/Data fetching & Caching.md -------------------------------------------------------------------------------- /web/fullstack/Nextjs/Chapters/Introduction.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NavigoLearn/RoadmapsMarkdown/HEAD/web/fullstack/Nextjs/Chapters/Introduction.md -------------------------------------------------------------------------------- /web/fullstack/Nextjs/Chapters/Layouts & Links.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NavigoLearn/RoadmapsMarkdown/HEAD/web/fullstack/Nextjs/Chapters/Layouts & Links.md -------------------------------------------------------------------------------- /web/fullstack/Nextjs/Chapters/Nextjs 14.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NavigoLearn/RoadmapsMarkdown/HEAD/web/fullstack/Nextjs/Chapters/Nextjs 14.md -------------------------------------------------------------------------------- /web/fullstack/Nextjs/Chapters/Pages & Routes.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NavigoLearn/RoadmapsMarkdown/HEAD/web/fullstack/Nextjs/Chapters/Pages & Routes.md -------------------------------------------------------------------------------- /web/fullstack/Nextjs/Chapters/Performance.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NavigoLearn/RoadmapsMarkdown/HEAD/web/fullstack/Nextjs/Chapters/Performance.md -------------------------------------------------------------------------------- /web/fullstack/Nextjs/Chapters/Practice projects.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NavigoLearn/RoadmapsMarkdown/HEAD/web/fullstack/Nextjs/Chapters/Practice projects.md -------------------------------------------------------------------------------- /web/fullstack/Nextjs/Chapters/Rendering.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NavigoLearn/RoadmapsMarkdown/HEAD/web/fullstack/Nextjs/Chapters/Rendering.md -------------------------------------------------------------------------------- /web/fullstack/Nextjs/Chapters/SEO.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NavigoLearn/RoadmapsMarkdown/HEAD/web/fullstack/Nextjs/Chapters/SEO.md -------------------------------------------------------------------------------- /web/fullstack/Nextjs/Chapters/Set up.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NavigoLearn/RoadmapsMarkdown/HEAD/web/fullstack/Nextjs/Chapters/Set up.md -------------------------------------------------------------------------------- /web/fullstack/Nextjs/Chapters/Specific usecases.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NavigoLearn/RoadmapsMarkdown/HEAD/web/fullstack/Nextjs/Chapters/Specific usecases.md -------------------------------------------------------------------------------- /web/fullstack/Nextjs/Chapters/Static & Dynamic Rendering.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NavigoLearn/RoadmapsMarkdown/HEAD/web/fullstack/Nextjs/Chapters/Static & Dynamic Rendering.md -------------------------------------------------------------------------------- /web/fullstack/Nextjs/Chapters/Styling.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NavigoLearn/RoadmapsMarkdown/HEAD/web/fullstack/Nextjs/Chapters/Styling.md -------------------------------------------------------------------------------- /web/fullstack/Nextjs/Chapters/Testing.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NavigoLearn/RoadmapsMarkdown/HEAD/web/fullstack/Nextjs/Chapters/Testing.md -------------------------------------------------------------------------------- /web/fullstack/Nextjs/Chapters/Why Nextjs?.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NavigoLearn/RoadmapsMarkdown/HEAD/web/fullstack/Nextjs/Chapters/Why Nextjs?.md -------------------------------------------------------------------------------- /web/fullstack/Nextjs/Nextjs Chapters.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NavigoLearn/RoadmapsMarkdown/HEAD/web/fullstack/Nextjs/Nextjs Chapters.md --------------------------------------------------------------------------------