From f4183b7174945c8084e931e0e650857f4f4b678e Mon Sep 17 00:00:00 2001 From: Archit Sharma <74408634+iArchitSharma@users.noreply.github.com> Date: Sat, 12 Feb 2022 16:54:21 +0700 Subject: [PATCH 1/6] Added resources for Parcel (#1133) * Added resources for Parcel * Update content/roadmaps/100-frontend/content/110-build-tools/101-module-bundlers/103-parcel.md * Update content/roadmaps/100-frontend/content/110-build-tools/101-module-bundlers/103-parcel.md Co-authored-by: Kamran Ahmed --- .../110-build-tools/101-module-bundlers/103-parcel.md | 9 ++++++++- 1 file changed, 8 insertions(+), 1 deletion(-) 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 From 9ec90f6abe955dc3b124687f8cdb77b2a70e8a06 Mon Sep 17 00:00:00 2001 From: Paul Marsicovetere <71470776+paulmarsicloud@users.noreply.github.com> Date: Sat, 12 Feb 2022 04:54:54 -0500 Subject: [PATCH 2/6] Add bitbucket resources --- .../105-repo-hosting-services/102-bitbucket.md | 14 +++++++++++++- 1 file changed, 13 insertions(+), 1 deletion(-) 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 From a18daa7356c45f062c2f75da44adb36c913a5392 Mon Sep 17 00:00:00 2001 From: Paul Marsicovetere <71470776+paulmarsicloud@users.noreply.github.com> Date: Sat, 12 Feb 2022 04:56:09 -0500 Subject: [PATCH 3/6] Add JWT resources * Update 104-jwt.md * Update content/roadmaps/101-backend/content/109-apis/106-authentication/104-jwt.md Co-authored-by: Kamran Ahmed --- .../content/109-apis/106-authentication/104-jwt.md | 11 ++++++++++- 1 file changed, 10 insertions(+), 1 deletion(-) 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 From c6def19bcdfe7aa5de54fa7d84e40fee2569d190 Mon Sep 17 00:00:00 2001 From: Archit Sharma <74408634+iArchitSharma@users.noreply.github.com> Date: Sat, 12 Feb 2022 16:56:53 +0700 Subject: [PATCH 4/6] Added resources for Rollup (#1130) * Added resources for Rollup * Update content/roadmaps/100-frontend/content/110-build-tools/101-module-bundlers/102-rollup.md Co-authored-by: Kamran Ahmed --- .../110-build-tools/101-module-bundlers/102-rollup.md | 9 ++++++++- 1 file changed, 8 insertions(+), 1 deletion(-) 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 From 6023376452e3b1e4644707db6bd0d1a75a943094 Mon Sep 17 00:00:00 2001 From: narasimhauppala Date: Sat, 12 Feb 2022 15:28:18 +0530 Subject: [PATCH 5/6] Add terminal usage resources * update 100-terminal-usage.md * Update content/roadmaps/101-backend/content/102-os-general-knowledge/100-terminal-usage.md Co-authored-by: Kamran Ahmed --- .../content/102-os-general-knowledge/100-terminal-usage.md | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) 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 From a2a6d7f3cfb4fc775d14306fab0743ecb6040f7a Mon Sep 17 00:00:00 2001 From: Archit Sharma <74408634+iArchitSharma@users.noreply.github.com> Date: Sat, 12 Feb 2022 23:58:24 +0700 Subject: [PATCH 6/6] Added content for Pick a Framework (#1107) * Added content for Pick a Framework * Update content/roadmaps/100-frontend/content/111-pick-a-framework/readme.md Co-authored-by: Kamran Ahmed --- .../100-frontend/content/111-pick-a-framework/readme.md | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) 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?