diff --git a/content/roadmaps/100-frontend/content/110-build-tools/101-module-bundlers/102-rollup.md b/content/roadmaps/100-frontend/content/110-build-tools/101-module-bundlers/102-rollup.md index 264fe197f..0e695daed 100644 --- a/content/roadmaps/100-frontend/content/110-build-tools/101-module-bundlers/102-rollup.md +++ b/content/roadmaps/100-frontend/content/110-build-tools/101-module-bundlers/102-rollup.md @@ -1 +1,8 @@ -# Rollup \ No newline at end of file +# Rollup + +Rollup is a module bundler for JavaScript which compiles small pieces of code into something larger and more complex, such as a library or application. + +Free Content + +Official Website and Docs +How to Set Up JavaScript Bundling Using Rollup diff --git a/content/roadmaps/100-frontend/content/110-build-tools/101-module-bundlers/103-parcel.md b/content/roadmaps/100-frontend/content/110-build-tools/101-module-bundlers/103-parcel.md index e59e1b473..4d2da5b95 100644 --- a/content/roadmaps/100-frontend/content/110-build-tools/101-module-bundlers/103-parcel.md +++ b/content/roadmaps/100-frontend/content/110-build-tools/101-module-bundlers/103-parcel.md @@ -1 +1,8 @@ -# Parcel \ No newline at end of file +# Parcel + +Parcel is a web application bundler, differentiated by its developer experience. It offers blazing-fast performance utilizing multicore processing and requires zero configuration. + +Free Content + +Official Website and Docs +Using Parcel Bundler with React diff --git a/content/roadmaps/100-frontend/content/111-pick-a-framework/readme.md b/content/roadmaps/100-frontend/content/111-pick-a-framework/readme.md index 17b304199..4afcc16df 100644 --- a/content/roadmaps/100-frontend/content/111-pick-a-framework/readme.md +++ b/content/roadmaps/100-frontend/content/111-pick-a-framework/readme.md @@ -1 +1,7 @@ -# Pick a framework \ No newline at end of file +# Pick a Framework + +Web frameworks are designed to write web applications. Frameworks are collections of libraries that aid in the development of a software product or website. Frameworks for web application development are collections of various tools. Frameworks vary in their capabilities and functions, depending on the tasks set. They define the structure, establish the rules, and provide the development tools required. + +Free Content +What is the difference between a framework and a library? + Which JS Framework is best? diff --git a/content/roadmaps/101-backend/content/102-os-general-knowledge/100-terminal-usage.md b/content/roadmaps/101-backend/content/102-os-general-knowledge/100-terminal-usage.md index 2a11f97e6..91c19ea12 100644 --- a/content/roadmaps/101-backend/content/102-os-general-knowledge/100-terminal-usage.md +++ b/content/roadmaps/101-backend/content/102-os-general-knowledge/100-terminal-usage.md @@ -1 +1,6 @@ -# Terminal usage \ No newline at end of file +# Terminal usage + +Terminals, also known as command lines or consoles, allow us to accomplish and automate tasks on a computer without the use of a graphical user interface. + +Command line crash course +Basic Terminal Usage - Cheat Sheet to make the command line EASY diff --git a/content/roadmaps/101-backend/content/105-repo-hosting-services/102-bitbucket.md b/content/roadmaps/101-backend/content/105-repo-hosting-services/102-bitbucket.md index 9c781a3b3..e5de098c2 100644 --- a/content/roadmaps/101-backend/content/105-repo-hosting-services/102-bitbucket.md +++ b/content/roadmaps/101-backend/content/105-repo-hosting-services/102-bitbucket.md @@ -1 +1,13 @@ -# Bitbucket \ No newline at end of file +# Bitbucket + +Bitbucket is a Git based hosting and source code repository service that is Atlassian's alternative to other products like GitHub, GitLab etc + +Bitbucket offers hosting options via Bitbucket Cloud (Atlassian's servers), Bitbucket Server (customer's on-premise) or Bitbucket Data Centre (number of servers in customers on-premise or cloud environment) + +Free Content +Bitbucket Website +A brief overview of Bitbucket +Getting started with Bitbucket +Using Git with Bitbucket Cloud +Bitbucket tutorial | How to use Bitbucket Cloud +Bitbucket Tutorial | Bitbucket for Beginners diff --git a/content/roadmaps/101-backend/content/109-apis/106-authentication/104-jwt.md b/content/roadmaps/101-backend/content/109-apis/106-authentication/104-jwt.md index d4a983b34..f461608e3 100644 --- a/content/roadmaps/101-backend/content/109-apis/106-authentication/104-jwt.md +++ b/content/roadmaps/101-backend/content/109-apis/106-authentication/104-jwt.md @@ -1 +1,10 @@ -# Jwt \ No newline at end of file +# JWT + +JWT stands for JSON Web Token is a token-based encryption open standard/methodology that is used to transfer information securely as a JSON object. Clients and Servers use JWT to securely share information, with the JWT containing encoded JSON objects and claims. JWT tokens are designed to be compact, safe to use within URLs, and ideal for SSO contexts. + +Free Content +jwt.io Website +Introduction to JSON Web Tokens +What is JWT? +What Is JWT and Why Should You Use JWT +What is JWT? JSON Web Token Explained